// roll-over image handlers
function preLoad()
{
  if (document.images) 
  {
  imgBak = new Image();
  imgBak.src = "images/pinstripe_back.gif";
  
  img1off = new Image();
  img1off.src = "images/sara-thmb.jpg";
  // initialize the image
	imgOff('img1','flash');

  img1on = new Image();      
  img1on.src = "images/lin_osx-thmb.jpg"; 
  img2on = new Image();      
  img2on.src = "images/us-thmb.jpg"; 
  img3on = new Image();      
  img3on.src = "images/ie-taped-th.jpg"; 
  img4on = new Image();      
  img4on.src = "images/om_1-thmb.jpg"; 
  img5on = new Image();      
  img5on.src = "images/fire-thmb.jpg"; 
  img6on = new Image();      
  img6on.src = "images/sara-thmb.jpg"; 
  img7on = new Image();      
  img7on.src = "images/can-thmb.jpg"; 
  img8on = new Image();      
  img8on.src = "images/cubby-thmb.jpg"; 
  img9on = new Image();      
  img9on.src = "images/maccon-thmb.jpg"; 
  img10on = new Image();      
  img10on.src = "images/hbrew-thmb.jpg"; 
  img11on = new Image();      
  img11on.src = "images/lilslydrool.jpg"; 
  img12on = new Image();      
  img12on.src = "images/lilm1.jpg"; 
  img13on = new Image();      
  img13on.src = "images/lilyj.jpg"; 
  img14on = new Image();      
  img14on.src = "images/dish-thmb.jpg"; 
  } //end if images
  return;
} //end preload

// Function to 'activate' images.
function imgOn(imgNum,imgNam) 
{
  if (document.images)
  {
    document[imgNam].src = eval(imgNum + "on.src");
  }
return;
} // end imgOn

// Function to 'deactivate' images.
function imgOff(imgNum,imgNam) 
{
  if (document.images)
  {
    document[imgNam].src = eval(imgNum + "off.src");
  }
return;
} // end imgOff

// Shows the 'div' element specified by "what"
function showIt(what)
{
   var divns6 = document.getElementsByTagName("div");
   divns6[what].style.visibility = 'visible';
   divns6['se'].style.visibility = 'hidden';
return;
} // end showIt

// hide a specific 'div' element -
function hideIt(what)
{
   var divns6 = document.getElementsByTagName("div");
   divns6[what].style.visibility = 'hidden';
   divns6['se'].style.visibility = 'visible';
return;
} // end hideIt

