<!-- Hide script from older browsers		// Creat new image objects		function newImage(arg) {			if (document.images) {				rslt = new Image();				rslt.src = arg;				return rslt;			}		}		// Change the image if the rest of the page is loaded		function changeImages() {			if (document.images && (preloadFlag == true)) {				for (var i=0; i<changeImages.arguments.length; i+=2) {					document[changeImages.arguments[i]].src = changeImages.arguments[i+1];				}			}		}		// Preloads the images		var preloadFlag = false;		function preloadImages() {			if (document.images) {				img01 = newImage("layout/type-architectural-on.gif");				img02 = newImage("layout/type-hollowcore-on.gif");				img03 = newImage("layout/type-parking-on.gif");				img04 = newImage("layout/type-sports-on.gif");				img05 = newImage("layout/type-total-on.gif");				img06 = newImage("layout/type-wall-on.gif");				img07 = newImage("layout/menu-about-on.gif");				img08 = newImage("layout/menu-articles-on.gif");				img09 = newImage("layout/menu-case-on.gif");				img10 = newImage("layout/menu-contact-on.gif");				img11 = newImage("layout/menu-faq-on.gif");				img12 = newImage("layout/menu-gallery-on.gif");				img13 = newImage("layout/menu-home-on.gif");				img14 = newImage("layout/menu-news-on.gif");				img15 = newImage("layout/menu-programs-on.gif");				img16 = newImage("layout/menu-tour-on.gif");				img17 = newImage("layout/menu-why-on.gif");				img18 = newImage("layout/menu-producers-on.gif");				preloadFlag = true;			}		}// end hiding script from older browsers -->