var joshIsTheBestBrotherEver = {
 	imagenames : [],
 	baseimage : "",
 	basepath : "",
 	
 	initialize : function() {
 		imagenames = ["Windows1", "Front2", "Windows2"];
 		baseimage = "FBE Interior001550.jpg";
 		basepath = "images/new/";
 		
 		imagenames.each(function(eachImage) {
 			Event.observe($(eachImage), "mouseover", function() {
 				$("bigimage").src = basepath + eachImage + "550.jpg";
 			});
 			
 			Event.observe($(eachImage), "mouseout", function() {
 				$("bigimage").src = basepath + baseimage;
 			});
 		});
 	}
}

  Event.observe(window,"load", function() {
  	joshIsTheBestBrotherEver.initialize();
  });