// Conditionally perform the rollovers in JavaScript 1.0
function ImagePreload()
{
  var ThisDoc=document;
  if(ThisDoc.images)
  { 
    if(!ThisDoc.PictureArray)
        ThisDoc.PictureArray=new Array();
    var i;
    var ImgNumber=ThisDoc.PictureArray.length;
    var FunctionArgs=ImagePreload.arguments;
    for(i=0; i<FunctionArgs.length; i++)
       if (FunctionArgs[i].indexOf("#")!=0)
       {
          ThisDoc.PictureArray[ImgNumber]=new Image;
          ThisDoc.PictureArray[ImgNumber++].src=FunctionArgs[i];
       }
  }
}
// Swap Classes
//function HideMenu()
//{
//	ServicesMenu.className = 'ServicesMenuHide';
//	GalleryMenu.className = 'GalleryMenuHide';
//}
//function ShowServices()
//{
//	ServicesMenu.className = 'ServicesMenuShow';
//	GalleryMenu.className = 'GalleryMenuHide';
//}
//function ShowGallery()
//{
//	ServicesMenu.className = 'ServicesMenuHide';
//	GalleryMenu.className = 'GalleryMenuShow';
//}
