isIE = $.browser.msie && !$.support.opacity;
isIE6 = isIE && $.browser.version < 7;

function resizeVeil(){
	$('#overlayMentionsLegalesVeil').css({'height': $(document).height(),'width': $(window).width()});
}

function moveML(){
	var o = $('#overlayMentionsLegales, #overlayMentionsLegalesVeil');
	var v = $('#overlayMentionsLegalesVeil');
	var m = $('#overlayMentionsLegales');
	o.appendTo('body');
	$('.overlayMentionsLegalesOpen').live('click', function(e){
		if(isIE){
			v.stop().fadeTo('fast',0.5);	//#overlayMentionsLegalesVeil
			m.stop().fadeIn('fast');		//#overlayMentionsLegales
		} else {
			o.stop().fadeIn('fast');//both
		}
		resizeVeil();
		e.preventDefault();
	})	
	$('.overlayMentionsLegalesClose').live('click', function(e){
		o.stop().fadeOut('fast');
		resizeVeil();
		e.preventDefault();
	})	
	resizeVeil();
	$(window).resize(function(){
			resizeVeil();
	});		
}

$(function() {	
	setTimeout('moveML()', 600);
});
