	homeon = new Image(45, 20); homeon.src = "gallery/stat/home-on.gif";
	homeoff = new Image(45, 20); homeoff.src = "gallery/stat/home-off.gif";
	
	contacton = new Image(58, 20); contacton.src = "gallery/stat/contact-on.gif";
	contactoff = new Image(58, 20); contactoff.src = "gallery/stat/contact-off.gif";

	enteron = new Image(48, 20); enteron.src = "gallery/stat/ent1-on.gif";
	enteroff = new Image(48, 20); enteroff.src = "gallery/stat/ent1-off.gif";
	
function imageA(imageName,imageNo) {
 	if(imageNo==null){
	 	imageOn = eval(imageName + "on.src");
 		document[imageName].src = imageOn;
 
	}else {
		imageOn = eval(imageName + imageNo + "on.src");
	document[imageName].src = imageOn;
		}
 }
 function imageB(imageName) {
	 imageOff = eval(imageName + "off.src");
	 document[imageName].src = imageOff;
 }
	