var derid='none';
function calTotal(){
	$('total').value=Math.round((parseInt($F('largeur'))*parseInt($F('longueur'))*parseInt($F('hauteur')))/6)/1000;

}

function deroule(idAffiche){
	$(idAffiche).show();
	if ((derid!='none')&&(derid!=idAffiche))
		$(derid).hide();	
	derid=idAffiche;
}
function assign(idAffiche){
	derid=idAffiche;
}

function afficherSurSite(code,action) {
		var opt = {
			method: 'post',
			parameters: 'code=' + code + '&action=' + action,
			onComplete: function(t) {
				$('etat_'+code).innerHTML = t.responseText;
			}
		}
	new Ajax.Request('lib/affichersursite.ajax.php', opt);

}
if(Prototype.Browser.IE){
	var timeInfo=0.03;
}else{
	var timeInfo=0.04;
}
Event.observe(window, 'load',function(){
	if($('inneractu_reel')){
		new PeriodicalExecuter(function(pe) {
			if(parseInt($('inneractu_reel').style.left)<(-$('inneractu_reel').getDimensions().width)){
				$('inneractu_reel').style.left = $('actus').getDimensions().width+'px';
			}
			$('inneractu_reel').style.left=parseInt($('inneractu_reel').style.left)-1+'px';
		}, timeInfo);
	}
});
