// product links
i = 0;
total = 4;
var loadImage = new Image(total);
var staticImage = new Image(total);
var myImageString = new Array("photo","visitus","ourshowroom","launchphoto");

for ( i=0; i<total; i++){
	loadImage[i] = new Image();
	loadImage[i].src = "images/" + myImageString[i] + "_2.gif";
	staticImage[i] = new Image();
	staticImage[i].src = "images/" + myImageString[i] + ".gif";
}
 



