// JavaScript Document
function newImage( imgSrc ){

 var imgName = new Image();
 imgName.src = imgSrc;

 return imgName;

}

function change( imgName, imgLocation )
{
 document[imgName].src = imgLocation ;
}

var preloadFlag = false;
function loadImages()
{
 if (document.images)
 {
	 default_over = newImage("index_files/scfclogo.gif");

 //****Edit this list to include rollover state images ****
  home_over = newImage("index_files/shop.gif");

 preloadFlag = true;
 }
}
