var pList = new Array("hompag", "curprod", "upcev", "phogal", "hisplay", "hishall", "howhere", "respol", "contus");
function PreloadImages(suf)
{
 for (var i=0; i< pList.length; i++) {
   this[pList[i]] = new Image()
   this[pList[i]].src="images/" + pList[i] + suf
 }
 return this;
}
function ImageLoader() {
 norm = new PreloadImages('.gif')
 over = new PreloadImages('s.gif')
}
function revImg(I) {
 if (document.images) {
   document.images[I].src="images/" + I + "s.gif"
   }
 }
function norImg(I) {
 if (document.images) {
  document.images[I].src="images/" + I + ".gif"
   }
}
