$(document).ready( function(){

function oc(a)
{
  var o = {};
  for(var i=0;i<a.length;i++)
  {
    o[a[i]]='';
  }
  return o;
}


	$("#currentvideo").load("currentvideo.php?h=1&s=no");
	$("#vidselect a:first").addClass("sel");
	$("#server").load("query.php");
	
	$(".vid").click(function() { 
		$("#vidselect a").removeClass("sel");
		$(this).addClass("sel");
		if ( $(this).text() in oc([1,2,3,4,5,6,7,8,9]) ) {
			$("#currentvideo").html("Loading...").load("currentvideo.php?h="+$(this).text()+"&ver=6"); 
		} else {
			$("#currentvideo").html("Loading...").load("currentvideo.php?y="+($(this).text()-9)+"&ver=8"); 
		}
	});	

	$("#vidrand").click(function() { $("#vidselect a").removeClass("sel");$(this).addClass("sel");$("#currentvideo").load("currentvideo.php?r=1"); });
	

});