// JavaScript Document

function mouseOver(which){

	

	which.className = "overMenu";



}



function mouseOut(which){

	

	which.className = "cellMenu";



}



function mouseClick(which){

	var pageAouvrir;



	switch (which.id) {

		case "home" : 		pageAouvrir = "index.html";

							break;

		case "info" : 		pageAouvrir = "infos.html";

							break;

		case "term" : 		pageAouvrir = "terms.html";

							break;

		case "map" : 		pageAouvrir = "map.html";

							break;

		case "pack" : 		pageAouvrir = "packages.html";

							break;

		case "brochure" : 	pageAouvrir = "quotation.php";

							break;

		case "reserv" : 	pageAouvrir = "reservation.html";

							break;

		case "bb" : 		pageAouvrir = "http://www.unefleur.ca";

							break;

		case "contact" : 	pageAouvrir = "contact.html";

							break;

		}

		

		window.open(pageAouvrir,"_self");



}


