/********************************
Version : 1.0.1
Revised : mercredi 23 février 2011, 20:19:59 (UTC+0100)
********************************/


$(document).ready(function(){
	$().ceebox({});
	$('.ceebox').ceebox();
	placeLogo("#logo-cpm",715);
	placeLogo("#logo-cp2m",-8);
	if($(window).height()<$('#contenu').height()+120)of=$('#contenu').height()+120;else of=$(window).height()-120;
	$('#conteneur').css({"height":of+"px"});
	$("#mentions").css({"top":($(window).scrollTop()+$(window).height()-22)+"px"});
});

$(window).resize(function(){
	placeLogo("#logo-cpm",715);
	placeLogo("#logo-cp2m",-8);
	if($(window).height()<$('#contenu').height()+120)of=$('#contenu').height()+120;else of=$(window).height()-120;
	$('#conteneur').css({"height":of+"px"});
	$("#mentions").css({"top":($(window).scrollTop()+$(window).height()-22)+"px"});
});

$(window).scroll(function(){
	$("#mentions").css({"top":($(window).scrollTop()+$(window).height()-22)+"px"});
});

function placeLogo(lg,offset){
	var pos=Math.ceil(($(window).width()-964)/2)+offset+"px";
	$(lg).css({"left":pos});
}
