var obj = null;

function checkHover() {
	if (obj) {
		obj.find('ul').fadeOut('fast');	
	} //if
} //checkHover

$(document).ready(function() {
    // Gestion du menu déroulant
	$('#header_menu ul li.niveau1').hover(function() {
		if (obj) {
			obj.find('ul').fadeOut('fast');
			obj = null;
		}
		
		$(this).find('ul').fadeIn('fast');
	}, function() {
		obj = $(this);
		setTimeout(
			"checkHover()",
			500); // pour retarder la disparition
	});
	
	// Contour de la pop-up portrait joueur
	$('#facebox').pngFix();
	$('.image_png').pngFix();
	
	// Pop-up - Portrait joueur
	$('a[rel*=facebox]').facebox();
	
	$(".diaporama_joueurs").newsTicker();
    $(".diaporama_joueurs").show();
    
    //$("#content").dropShadow({left: 3, top: 3, opacity: 0.6, blur: 3});
    $("#img_home").dropShadow({left: 3, top: 3, opacity: 0.6, blur: 2});
});