// pragma page ""
// pragma page "Copyright::Function::getCopyInfo"
////////////////////////////////////////////////////////////////
//
// Returns standard copyright information
//
////////////////////////////////////////////////////////////////
function getCopyInfo()
{
	var sCopyright	= '';
	sCopyright		+= '<br>';
	sCopyright		+= '&copy; 2008 &#8226; Russ\' Garage &#8226; All rights reserved';
	sCopyright		+= '<br>';

	return( sCopyright );
}

// pragma page "Copyright::Function::getCreatedBy"
////////////////////////////////////////////////////////////////
//
// Returns standard created by information
//
////////////////////////////////////////////////////////////////
function getCreatedBy()
{
	var sHtml = '';
	sHtml	= '<br>Site created and designed by ///SimKen Solutions';

	return( sHtml );
}

// pragma page "Menu:imgChg"
////////////////////////////////////////////////////////////////
//
// handles mouseover functionality for menu images
//
////////////////////////////////////////////////////////////////
function imgChg(
  sItem
 ,sImg
)
{
	document.getElementById( sItem ).style.background="url(" + sImg + ")";
}
