//*******************************************************************************************
//	rollover sur des images
//*******************************************************************************************
	liens_on = new Image(80, 15);
	liens_on.src = "images/menu_top/liens_on.gif";
	liens_off = new Image(0, 15);
	liens_off.src = "images/menu_top/liens_off.gif";

	contact_on = new Image(80, 16);
	contact_on.src = "images/menu_top/contact_on.gif";
	contact_off = new Image(80, 16);
	contact_off.src = "images/menu_top/contact_off.gif";

	mn_tp_home_on = new Image(87, 35);
	mn_tp_home_on.src = "images/menu_top/home_on.gif";
	mn_tp_home_off = new Image(87, 35);
	mn_tp_home_off.src = "images/menu_top/home_off.gif";

	mn_tp_club_on = new Image(62, 35);
	mn_tp_club_on.src = "images/menu_top/club_on.gif";
	mn_tp_club_off = new Image(62, 35);
	mn_tp_club_off.src = "images/menu_top/club_off.gif";

	mn_tp_ic_on = new Image(113, 35);
	mn_tp_ic_on.src = "images/menu_top/ic_on.gif";
	mn_tp_ic_off = new Image(113, 35);
	mn_tp_ic_off.src = "images/menu_top/ic_off.gif";

	mn_tp_tournoi_on = new Image(166, 35);
	mn_tp_tournoi_on.src = "images/menu_top/tournoi_on.gif";
	mn_tp_tournoi_off = new Image(166, 35);
	mn_tp_tournoi_off.src = "images/menu_top/tournoi_off.gif";

	mn_tp_cours_on = new Image(77, 35);
	mn_tp_cours_on.src = "images/menu_top/cours_on.gif";
	mn_tp_cours_off = new Image(77, 35);
	mn_tp_cours_off.src = "images/menu_top/cours_off.gif";

	mn_tp_activites_on = new Image(99, 35);
	mn_tp_activites_on.src = "images/menu_top/activites_on.gif";
	mn_tp_activites_off = new Image(99, 35);
	mn_tp_activites_off.src = "images/menu_top/activites_off.gif";

	mn_tp_admin_on = new Image(57, 35);
	mn_tp_admin_on.src = "images/menu_top/admin_on.gif";
	mn_tp_admin_off = new Image(57, 35);
	mn_tp_admin_off.src = "images/menu_top/admin_off.gif";

//*****************************************************************

function imageOn(imagex) {
	if (document.images) {
		ion = eval(imagex + "_on.src");
		document [imagex].src = ion;
	}
}

function imageOff(imagex) {
	if (document.images) {
		iof = eval(imagex + "_off.src");
		document [imagex].src = iof;
	}
}

