// JavaScript Document
function fnmasjugados(id){
		$('#loadingmasjugados').show(15);
		$('#masjugados').load("inc.juego.masjugados.php?opt="+id,function(){
 		$('#masjugados').show();
			$('#masjugados').fadeIn(25);
			$('#loadingmasjugados').hide(); 
		});		
				
	}

function ratess(voto,idvideo){
	$('#rates').load("rate.php?voto="+voto+"&idvideo=" + idvideo);
}

function buscar() {
	if(document.forms['busqueda'].t.value=='') {
		alert('Introduzca un texto a buscar');	
	} else {
		document.forms['busqueda'].submit();
		return true;
	}
}

$(document).ready(function(){
	$(".bkmark").fadeTo("slow", 0.3); // This sets the opacity of the thumbs to fade down to 30% when the page loads
	$(".bkmark").hover(function(){
	$(this).fadeTo("slow", 1.0); // This should set the opacity to 100% on hover
	   },function(){
	$(this).fadeTo("slow", 0.3); // This should set the opacity back to 30% on mouseout
	});
	
	});

