$(document).ready(initialiser) ;

function initialiser(){
	changeMenu();	
	$("#menu li").mouseover(changeThermo);

}

/****Thermos****/

function changeMenu(){
	//thermo
	var img = $("h3").attr("id");
	var chemin = "habillage/images/thermos/"+img+".png";
	$("#thermo").attr("src", chemin);	
	//color li
	$("#menu li."+img).attr("id", "white"); 
}

function changeThermo(){
	var newImg = $(this).attr("class");
	var newChemin = "habillage/images/thermos/"+newImg+".png";
	$("#thermo").attr("src", newChemin);
	$("#menu").mouseleave(changeMenu);	
}


/****Survey****/

function displaySurvey(pageName, windowName){
	window.open(pageName,windowName,config='toolbar=no,status=no,width=800 ,height=500,scrollbars=yes,location=no,resize=yes,menubar=yes');
}
