/*Créé par jerome lebleu tout droit reservé*/
function deplaceVers(baliseA){var scroll=new Fx.Scroll(window,{wait:false,duration:1000,transition:Fx.Transitions.Quad.easeInOut});scroll.toElement(baliseA);}

function affBloc (id) {

	if($(id).getStyle('display') == 'none') {$(id).setStyle('display', 'block');}
	
	else{$(id).setStyle('display', 'none');}

}

function Remplace(expr,a,b) {
  var i=0
  while (i!=-1) {
	 i=expr.indexOf(a,i);
	 if (i>=0) {
		expr=expr.substring(0,i)+b+expr.substring(i+a.length);
		i+=b.length;
	 }
  }
  return expr
}

window.addEvent('domready', function() {
	
	//AFFICHAGE DES IMAGES
	if(!$chk($('affOptPage'))) {
		$$('.thumb').each(function(elem,index){
			
			var tag = elem.get('tag');
			
			if(tag != 'img') elem.setStyle('backgroundImage' , 'url('+elem.getProperty('rev')+')');
	
		});
	}
	
	period_footer = place_footer.periodical(3000, this); 
	place_footer(); 
	
if($chk($('simulateur'))) {
	
		$('simulateur').load(racine+'/speciale/simulateur.php');
		
}
	
								 
});

function place_footer () {
	
	//PLACEMENT DU FOOTER
	var hcol1= ($chk($('col-1'))) ? ($('col-1').getStyle('height')).toInt() : 500;
	var hcol2= ($chk($('col-2'))) ? ($('col-2').getStyle('height')).toInt() : 0;
	var hcol3= ($chk($('col-3'))) ? ($('col-3').getStyle('height')).toInt() : 0;
	
	nouvH = hcol1; 
	if(hcol2>hcol1&&hcol2>hcol3)nouvH=hcol2;
	if(hcol3>hcol1&&hcol3>hcol2)nouvH=hcol3;
	
	$('col-1').setStyle('height',nouvH);
	$('footer').setStyle('display','block');
	
}

