//This js-file preloads images for standard.htm files on site...

/*
 --- Rollover script
 ----- From: http://www.htmlcenter.com/tutorials/tutorials.cfm/79/Javascript/
*/

function move_in(img_name,img_src) {
  document[img_name].src=img_src;
}

function move_out(img_name,img_src) {
  document[img_name].src=img_src;
}

/*
 --- Preload images script
 ----- By JavaScript Kit: http://javascriptkit.com/script/script2/preloadimage.shtml
*/

var myimages=new Array()
function preloadimages(){
  for (i=0;i<preloadimages.arguments.length;i++){
    myimages[i]=new Image()
      myimages[i].src=preloadimages.arguments[i]
  }
}


//Enter path of images to be preloaded...

preloadimages("Merchant2/graphics/home-x.gif","Merchant2/graphics/shop-x.gif","Merchant2/graphics/contact-x.gif","Merchant2/graphics/shows-x.gif","Merchant2/graphics/links-x.gif")
