$(document).ready(function(){ 
	initGlobalAnims();
	alertIE6();
});

function alertIE6()
{
	var IE6 = false /*@cc_on || @_jscript_version < 5.7 @*/;
	if(IE6)
		$("#notifications-container").html('<div style="float:none;" class="notification">Vous utilisez une version de Internet Explorer ant&eacute;rieure &agrave; 7.0. Pour voir ce site correctement, il est consill&eacute; de mettre &agrave; jour votre navigateur <a class="red" href="http://www.microsoft.com/france/windows/downloads/ie/getitnow.Mspx">en suivant ce lien</a></div>');
}

function initGlobalAnims()
{
	// This sets the opacity of the thumbs to fade down to 60% when the page loads
	$(".anim_notification").fadeTo(2500, 0.85);
	$(".masque").fadeTo(1, 0.6);
	$(".masque_container:not(.masque_no_anim)").hover(function(){
			$(this).find(".masque").stop();
			$(this).find(".masque").fadeTo(600, 0); // This sets the opacity to 100% on hover
		},function(){		
			$(this).find(".masque").stop();
			$(this).find(".masque").fadeTo(200, 0.6); // This sets the opacity back to 60% on mouseout
		});
}