$(document).ready(function() {	
	Shadowbox.init({slideshowDelay: 0});
	//$("#nav ul.submenu li a").pngFix();
});


// MENU EFFECTS
$(document).ready(function() {
	// MENU
	$("ul.menu > li:not(.active) > a").fadeTo(0,0.5);
	$("ul.menu > li:not(.active) > a").mouseover(function() {
		$(this).stop().fadeTo(250,1);
	}).mouseout(function() {
		$(this).stop().fadeTo(500,0.5);
	});
	// SOUS MENU
	$("ul.submenu > li:not(.active) > a").fadeTo(0,0.5);
	$("ul.submenu > li:not(.active) > a").mouseover(function() {
		$(this).stop().fadeTo(250,1);
	}).mouseout(function() {
		$(this).stop().fadeTo(500,0.5);
	});
});

// FOOTER BLOCS
$(document).ready(function() {
	$(".bloc").mouseover(function() {
		$(this).addClass("running");
		$(".bloc:not(.running)").stop().fadeTo(250,0.3);
	}).mouseout(function() {
		$(this).removeClass("running");
		$(".bloc").stop().fadeTo(1000,1);
	});
});

$("a.shadowbox").live("click",function() {
	Shadowbox.open({
		player: "img",
		title: $(this).attr("title"),
		content: $(this).attr("href")
	});
	return false;
});
