if(navigator.userAgent.indexOf('MSIE 6') >= 0){

	css = "#accueil #nousTrouver p { margin-top: 1em } #contact .cadre-photo { width: 29.3em; overflow: hidden   } .cadre-photo .photo img { margin: 0.8em;  } .cols4 .cadre-flyer { margin: 0.5em 0.4em; margin-left: 0.2em; margin-bottom: -0.7em; } .cols4 .ombre { top: 0.9em } #diaporama .ombre { margin-top: -0.3em }  #historique .ombre { margin-top: -0.3em }  #accueil #visuel #visualiseur { border: 1px solid #ccc; height: 35.4em;  }";

	document.write('<style type="text/css">'+css+'</style>')

}

if(navigator.userAgent.indexOf('MSIE 7') >= 0){

	css = "#accueil #nousTrouver p { margin-top: 1em } #bugIE1 { display: none; } #entetes #menu ul li.lg a{ }";

	document.write('<style type="text/css">'+css+'</style>')

}


Event.observe(window, "load", init);


function init(){

	if(document.getElementById('listeReferences')){
		listeRef();
		}

}


function listeRef(){

	u = $('listeReferences');
	
	col = new Array('#222','#333','#444','#555','#666','#777','#888','#999','#aaa','#bbb','#ccc','#ddd','#eee')
	
	l = u.getElementsByTagName('li');
	
	//alert(Math.floor(l.length/col.length)+" "+l.length%col.length)
	
	j = 0;
	
	for(i=0;i<l.length;i++){
	
		l[i].style.color = col[j]
		
		
		
		if(i>0 && i%Math.floor(l.length/(col.length-1))==0){

			j++;
		
		}
	
	}
	

}

function shwDiap(){

	d = $('diaporamas').getElementsByTagName('div')[0];
	d.style.display = "none";
	
	ifr = Builder.node('iframe',{id:'diapIframe',src:'animations/diaporama.html'});
	$('diaporamas').appendChild(ifr);
	

}


function retour(){

	Element.remove('diapIframe');
	d = $('diaporamas').getElementsByTagName('div')[0].style.display = "";

}

