// create an array of the URLs of all images that are to 
// appear in the slideshow

var pics = new Array("../images/book_ovr.gif","../images/contact_ovr.gif","../images/contra_ovr.gif","../images/embody_ovr.gif","..images/home_ovr.gif","..images/itec_ovr.gif","../images/prices_ovr.gif","../images/special_ovr.gif","../images/massage_ovr.gif");

// create a new empty array

var preload = new Array();

// insert a new Image object into each empty element
// then assign each image URL to the Image objects  

for(var i = 0; i < pics.length; i++ )
{
  preload[ i ] = new Image();
  preload[ i ].src = pics[ i ];
}