function PreloadImages()
{
  //load all the menu tab images.
}

function SetTab(img)
{
//alert("Entering the function\nself.parent.tabmenu is " + self.parent.frames['tabmenu']);
	if (self.parent.frames['tabmenu'])
	{
  	var win = self.parent.frames['tabmenu'].document;
  
//alert("passed the variable assignment");
//alert(win.images.length);	
  	for (idx = 0; idx < win.images.length; idx++)
  	{
//alert("Entering the for loop");
  	  if (win.images[idx].name == img)
  		{
  			win.images[idx].src = "images/" + img + "1.gif";
  		}
  		else
  		{
  		  win.images[idx].src = "images/" + win.images[idx].name + "2.gif";
  		}
  	}
	} //end self.parent is valid 
}

function CopyWarn()
{
//  alert("All writings found in this section of my site are the property and "+
//				"original works of Shawn South.\nThey may not be reproduced without "+
//				"express written permission.");
}