// JavaScript Document

startList = function() {	
 	document.getElementById('panier').onmouseover=function() {
		document.getElementById('panier_hover').style.display='block';
		//new Effect.BlindDown('inner_panier');
		this.className+=" over";
	}
	document.getElementById('panier').onmouseout=function() {
		document.getElementById('panier_hover').style.display='none';
		//new Effect.SlideUp('show_panier');
		this.className=this.className.replace("over", "");
	}
}
window.onload=startList;
