// JavaScript Document
	

	if (document.images) {
		PhotoText = new Image
		ServicesText = new Image
		accueilText = new Image
		InfosText = new Image
		ForumText = new Image
		ChatText = new Image
		NetidentiteText = new Image
		LiensText = new Image
		PlanText = new Image
		ContactText = new Image
		
		PhotoText.src = "images/PhotoText.gif"
		ServicesText.src = "images/ServicesText.gif"
		accueilText.src = "images/accueil.gif"
		InfosText.src = "images/InfosText.gif"
		ForumText.src = "images/ForumText.gif"
		ChatText.src = "images/ChatText.gif"
		NetidentiteText.src = "images/NetidentiteText.gif"
		LiensText.src = "images/LiensText.gif"
		PlanText.src = "images/PlanText.gif"
		ContactText.src = "images/ContactText.gif"
		
		PhotoOff = new Image
		ServicesOff = new Image
		InfosOff = new Image
		ForumOff = new Image
		ChatOff = new Image
		NetidentiteOff = new Image
		LiensOff = new Image
		PlanOff = new Image
		ContactOff = new Image
		PhotoOn = new Image
		ServicesOn = new Image
		InfosOn = new Image
		ForumOn = new Image
		ChatOn = new Image
		NetidentiteOn = new Image
		LiensOn = new Image
		PlanOn = new Image
		ContactOn = new Image
		
		PhotoOff.src = "images/Photo.gif"
		ServicesOff.src = "images/Services.gif"
		InfosOff.src = "images/Infos.gif"
		ForumOff.src = "images/Forum.gif"
		ChatOff.src = "images/Chat.gif"
		NetidentiteOff.src = "images/Netidentite.gif"
		LiensOff.src = "images/Liens.gif"
		PlanOff.src = "images/Plan.gif"
		ContactOff.src = "images/Contact.gif"
		PhotoOn.src = "images/Photo2.gif"
		ServicesOn.src = "images/Services2.gif"
		InfosOn.src = "images/Infos2.gif"
		ForumOn.src = "images/Forum2.gif"
		ChatOn.src = "images/Chat2.gif"
		NetidentiteOn.src = "images/Netidentite2.gif"
		LiensOn.src = "images/Liens2.gif"
		PlanOn.src = "images/Plan2.gif"
		ContactOn.src = "images/Contact2.gif"
		
	}
	
	function chgImg(imgField,newImg) {
		if (document.images) {
			document[imgField].src = eval(newImg + ".src")
		}
	}
	
