/* ===============================================

	Societe ADiFCO 
	
	Site de presentation de la societe Adifco 
	
	Scripts crees par 
	Victor VILA en septembre 2008
	
	victor (at) adifco.fr	03 80 48 69 24
	
	ADiFCO
	14E rue Pierre de Coubertin
	21 000 DIJON
	
=============================================== */ 

survol = function() {
	var el = document.getElementById("detail").getElementsByTagName("dl");
	for (i = 1; i < el.length; i++) {
		el[i].onmouseover = function() {
		this.className = "colOver";	
		}	
	}
	for (i = 1; i < el.length; i++) {
		el[i].onmouseout = function() {
		this.className = "";	
		}	
	}
}

function aller(url) {
	self.location = url;
}

window.onload = survol;
