  function IsHomePage()
  {
  	// test for the "homepage" class name in the <BODY> tag
  	var bodyLinks = document.getElementsByTagName("BODY");
  	if ((bodyLinks != undefined) && (bodyLinks != null) && (bodyLinks.length > 0))
  	{
  		var classStr = bodyLinks[0].className;
 		if ((classStr != undefined) && (classStr != null) && (classStr.indexOf("homepage") != -1))
  		{
  			return(true);
  		}
  	}
  	return(false);
  }
  
  function CheckRedirects()
  {
  	if (IsHomePage())	// only run this code on the home page
  	{
 		 window.location = "http://leecontracting.smugmug.com/gallery/2828975";		// go to the new URL
  	}
  }


/*=========================*/
slideDuration = 2;
/*=========================*/