/*****************************      CONST       **************************/
var copyright = "<a style='color:#cccccc'> Copyright&copy;2008</a> <b style='color:#31970c'>GO-GREEN.</b><a style='color:#cccccc'> All Rights Reserved  &#160;&#160;&#160;Tel: 608-314-2020 &#160;&#160;&#160;&#160; Fax: 608-314-2021  &#160;&#160;&#160;&#160; 3706 Enterprise Drive Janesville, WI  53546</a>";





/*****************************    FUNCTIONS    **************************/
function swapImg(imgID)
{
// This func assumes that image name is "image.format" 
// and the rollOver image is "image-over.format"
	try{
		var img = document.getElementById(imgID);
		var imgSrc = new String(img.src);
		var imgSrc1 =   imgSrc.substring(0,imgSrc.lastIndexOf('.'));//new String();
		var rollOver = "-over";
		var imgSrc2 = imgSrc.substring(imgSrc.lastIndexOf('.'),(imgSrc.length));// new String();
		if(imgSrc.indexOf("-over") < 0)	//= Switch to roll over image
		{
			img.src = imgSrc1 + rollOver + imgSrc2;
		}
		else
		{
			img.src = imgSrc1.substring(0,imgSrc1.length-(rollOver.length)) + imgSrc2;
		}
	}
	catch(e)
	{
		alert("err: "+e);
	}
}