
	homeon = new Image;
	homeoff = new Image;
	abouton = new Image;
	aboutoff = new Image;
	serviceson = new Image;
	servicesoff = new Image;
	clienton = new Image;
	clientoff = new Image;
	formson = new Image;
	formsoff = new Image;
	contacton = new Image;
	contactoff = new Image;


	homeon.src = "images/nav_home_on.gif";
	homeoff.src = "images/nav_home.gif";
	abouton.src = "images/nav_about_on.gif";
	aboutoff.src = "images/nav_about.gif";
	serviceson.src = "images/nav_services_on.gif";
	servicesoff.src = "images/nav_services.gif";
	clienton.src = "images/nav_client_on.gif";
	clientoff.src = "images/nav_client.gif";
	formson.src = "images/nav_forms_on.gif";
	formsoff.src = "images/nav_forms.gif";
	contacton.src = "images/nav_contact_on.gif";
	contactoff.src = "images/nav_contact.gif";

	navon = new Image;
	navoff = new Image;

	navon.src = "images/nav_sp_on.gif";
	navoff.src = "images/nav_sp.gif";

	printon = new Image;
	printoff = new Image;

	printon.src = "images/printpage_icon_on.gif";
	printoff.src = "images/printpage_icon.gif";



function swapem(iname, gname) {
	iname.src = gname.src;
}
   


	var gAutoPrint = true; // Flag for whether or not to automatically call the print function

function printSpecial()
{
	if (document.getElementById != null)
	{
		var html = '<HTML>\n<HEAD>';
		

		if (document.getElementsByTagName != null)
		{
			var headTags = document.getElementsByTagName("head");
			if (headTags.length > 0)
				html += headTags[0].innerHTML;
		}
		
		html += '\n</HE' + 'AD>\n<BODY>\n';
		
		var printReadyElem = document.getElementById("printReady");
		
		if (printReadyElem != null)
		{
				html += printReadyElem.innerHTML;
		}
		else
		{
			alert("Could not find the printReady section in the HTML");
			return;
		}
			
		html += '\n</BO' + 'DY>\n</HT' + 'ML>';
		
		var printWin = window.open("","printSpecial");
		printWin.document.open();
		printWin.document.write(html);
		printWin.document.close();
		if (gAutoPrint)
			printWin.print();
	}
	else
	{
		alert("Sorry, the print ready feature is only available in modern browsers.");
	}
}
