fName = [	"../../images/projets/architecture/realisations/houseO.jpg",	"../../images/projets/cinema/kinutapark.jpg",	"../../images/projets/design/produit/mazroc/mazroc.jpg"	];prIMG = new Array();for (i=0; i<fName.length; i++){	prIMG[i] = new Image();	prIMG[i].src = fName[i];}window.onload = function(){	document.getElementById("projet1").onmouseover = function() {		indexprojet.change(["../../images/projets/architecture/realisations/houseO.jpg"]);	}	document.getElementById("projet2").onmouseover = function() {		indexprojet.change(["../../images/projets/cinema/kinutapark.jpg"]);	}	document.getElementById("projet3").onmouseover = function() {		indexprojet.change(["../../images/projets/design/produit/mazroc/mazroc.jpg"]);	}}var indexprojet = {	change : function(imageArray){		var imgTag = document.getElementById("content").getElementsByTagName("img");		for (var i=0; i<imgTag.length; i++){			imgTag[i].src = imageArray[i];		}	}}