<!--
//Preloader
myImages=new Array(
//image to be preloaded
"reset_quote_on.gif",
"reset_quote.gif",
"submit_instant_quote_on.gif",
"submit_instant_quote.gif"
);
if (document.images) {
 for (i=0;i<myImages.length;i++) {
//Image Path
	path = 'http://www.containerhireandsales.com/images/';
    img = new Image();
    img.src=path + myImages[i];
 }
}
// ImageSwapper (name = images name)(overname = images filename)
function swap(name,overname) {
document.images[name].src='http://www.containerhireandsales.com/images/' + overname + '.gif'; 
}
-->

