<!--
/**************************************************
Written by Adam Weiss
http://www.geocities.com/Amweiss157/
adam_weiss@hotmail.com
Keep this intact if you want to use the script!
In this script only edit the line that ends in /****/
Between the parenthesis put all you imgages you want loaded
in 'single quotes' followed by a , with no spaces 
**************************************************/

//--------------Preloads nav frame pics so they roll over faster
function preLoad()
{
var images = new Array('images/generic/splashpic_about.jpg','images/generic/splashpic_home.jpg','images/generic/splashpic_bulkbuy.jpg','images/generic/splashpic_news.jpg'); /****/
preloadImages(images);
}

//--------------Defines process for preload
function preloadImages(images)
{
for(loop = 0; loop < images.length; loop++)
{
var image = new Image();
image.src = images[loop];
}
}
//-->

