Shadowbox.init({
		language: "fr",
		autoDimensions: true,
		handleOversize: "resize",
		animate: false,
		players: ['img','swf','flv','iframe'],
		continuous: true
});

$(document).ready(function(){
	$("#home-rubrique .visuel").hover(
		function(){ $(this).addClass("activezone"); },
		function(){ $(this).removeClass("activezone"); }
	);
	$("#home-rubrique .visuel").click(function(){
		window.location=$(this).find("a").attr("href"); return false;
	});
	$("#tabs").tabs({ fx: { opacity: "toggle" } });
	if($("#tabs") && document.location.hash){
	  $.scrollTo(0,1);
	}
});
