// IMAGE PRELOADER

var myImages = new Array(
"images/logo-autowash-express.jpg",
"images/background-top-nav-left.gif",
"images/background-top-nav-middle.gif",
"images/background-top-nav-right.gif",
"images/background-top-nav-shadow-left.gif",
"images/background-top-nav-shadow-middle1.gif",
"images/background-top-nav-shadow-middle2.gif",
"images/background-top-nav-shadow-right.gif",
"images/header-text-services-nav-off.gif",
"images/header-text-services-nav-on.gif",
"images/button-shop-online-off.jpg",
"images/button-shop-online-on.jpg",
"images/button-gift-certificate-on-red.jpg",
"images/button-join-frequent-customer-program-off.jpg",
"images/button-current-specials-off.jpg",
"images/button-rhino-linings-off.jpg",
"images/button-environmental-off.jpg",
"images/button-shop-online-on.jpg",
"images/button-join-frequent-customer-program-on.jpg",
"images/button-current-specials-on.jpg",
"images/button-rhino-linings-on.jpg",
"images/button-environmental-on.jpg",
"images/background-footer-bar-left.gif",
"images/background-footer-bar-middle1.gif",
"images/background-footer-bar-middle2.gif",
"images/background-footer-bar-right.gif"
);
var myPreload = new Array(); 
for(var i = 0; i < myImages.length; i++ ){ 
	myPreload[i] = new Image(); 
	myPreload[i].src = myImages[i];
}