// pragma page ""
// pragma page "Copyright::Function::getCopyInfo"
////////////////////////////////////////////////////////////////
//
// Returns standard copyright information
//
////////////////////////////////////////////////////////////////
function getCopyInfo()
{
	var sCopyright	= '';
//	sCopyright		+= '<a href="index.html">Home</a> &#8226; <a href="about_us.html">About Us</a> &#8226; <a href="services.html">Services</a> &#8226; ';
//	sCopyright		+= '<a href="projects.html">Projects</a> &#8226; <a href="testimonials.html">Testimonials</a> &#8226; <a href="contact.html">Contact</a>';
//	sCopyright		+= '<br/><br/>';
	sCopyright		+= 'Russ\' Garage &#8226; 3135 North 84th Circle &#8226; Omaha, NE 68134 &#8226; 402.681.5128 &#8226; <a href="mailto:russgarage@gmail.com" >russgarage@gmail.com</a>';
	sCopyright		+= '<br/>';
	sCopyright		+= 'Copyright  &copy; 2011 Russ\' Garage &#8226; All Rights Reserved';
	sCopyright		+= '<br/><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 + ")";
}

