// JavaScript Document

function hideAll()
{
	browser=navigator.appName
	pageWidth=document.body.offsetWidth;
	pageWidth2=screen.width;
	homeSub = document.getElementById("HomeSub");
	sidingSub = document.getElementById("SidingSub");
	fibercementSub = document.getElementById("FiberCementSub");
	windowsSub = document.getElementById("WindowsSub");
	roofingSub = document.getElementById("RoofingSub");
	columnsSub = document.getElementById("ColumnsSub");
	deckingSub = document.getElementById("DeckingSub");
	doorsSub = document.getElementById("DoorsSub");
	brakesSub = document.getElementById("BrakesSub");
	gutteringSub = document.getElementById("GutteringSub");
	insulationSub = document.getElementById("InsulationSub");
	shuttersSub = document.getElementById("ShuttersSub");
	railingSub = document.getElementById("RailingSub");
	warrantySub = document.getElementById("WarrantySub");
	if(browser=="Microsoft Internet Explorer")
	{					
		homeSub.style.top="254px";
		sidingSub.style.top="254px";
		fibercementSub.style.top="254px";
		windowsSub.style.top="254px";
		roofingSub.style.top="254px";
		columnsSub.style.top="254px";
		deckingSub.style.top="254px";
		doorsSub.style.top="287px";
		brakesSub.style.top="287px";
		gutteringSub.style.top="287px";
		insulationSub.style.top="287px";
		shuttersSub.style.top="287px";
		railingSub.style.top="287px";
		warrantySub.style.top="287px";
		if(pageWidth<=1000)
		{
			homeSub.style.left=0+"px";
			sidingSub.style.left=142+"px";
			fibercementSub.style.left=284+"px";
			windowsSub.style.left=427+"px";
			roofingSub.style.left=570+"px";
			columnsSub.style.left=713+"px";
			deckingSub.style.left=856+"px";
			doorsSub.style.left=0+"px";
			brakesSub.style.left=142+"px";
			gutteringSub.style.left=284+"px";
			insulationSub.style.left=427+"px";
			shuttersSub.style.left=570+"px";
			railingSub.style.left=713+"px";
			warrantySub.style.left=856+"px";
		}
		else if(pageWidth>1000)
		{
			marginWidth=(pageWidth-1000)/2;
			homeSub.style.left=marginWidth+"px";
			sidingSub.style.left=142+marginWidth+"px";
			fibercementSub.style.left=284+marginWidth+"px";
			windowsSub.style.left=427+marginWidth+"px";
			roofingSub.style.left=570+marginWidth+"px";
			columnsSub.style.left=713+marginWidth+"px";
			deckingSub.style.left=856+marginWidth+"px";
			doorsSub.style.left=marginWidth+"px";
			brakesSub.style.left=142+marginWidth+"px";
			gutteringSub.style.left=284+marginWidth+"px";
			insulationSub.style.left=427+marginWidth+"px";
			shuttersSub.style.left=570+marginWidth+"px";
			railingSub.style.left=713+marginWidth+"px";
			warrantySub.style.left=856+marginWidth+"px";
		}
	}
	else if(browser=="Netscape")
	{
		homeSub.style.top="250px";
		sidingSub.style.top="250px";
		fibercementSub.style.top="250px";
		windowsSub.style.top="250px";
		roofingSub.style.top="250px";
		columnsSub.style.top="250px";
		deckingSub.style.top="250px";
		doorsSub.style.top="280px";
		brakesSub.style.top="280px";
		gutteringSub.style.top="280px";
		insulationSub.style.top="280px";
		shuttersSub.style.top="280px";
		railingSub.style.top="280px";
		warrantySub.style.top="280px";
		
		if(pageWidth2<=1000)
		{
			homeSub.style.left=0+"px";
			sidingSub.style.left=142+"px";
			fibercementSub.style.left=284+"px";
			windowsSub.style.left=427+"px";
			roofingSub.style.left=570+"px";
			columnsSub.style.left=713+"px";
			deckingSub.style.left=856+"px";
			doorsSub.style.left=0+"px";
			brakesSub.style.left=142+"px";
			gutteringSub.style.left=284+"px";
			insulationSub.style.left=427+"px";
			shuttersSub.style.left=570+"px";
			railingSub.style.left=713+"px";
			warrantySub.style.left=856+"px";
		}
		else if(pageWidth2>1000)
		{
			marginWidth=(pageWidth-1000)/2;
			homeSub.style.left=marginWidth+"px";
			sidingSub.style.left=142+marginWidth+"px";
			fibercementSub.style.left=284+marginWidth+"px";
			windowsSub.style.left=427+marginWidth+"px";
			roofingSub.style.left=570+marginWidth+"px";
			columnsSub.style.left=713+marginWidth+"px";
			deckingSub.style.left=856+marginWidth+"px";
			doorsSub.style.left=marginWidth+"px";
			brakesSub.style.left=142+marginWidth+"px";
			gutteringSub.style.left=284+marginWidth+"px";
			insulationSub.style.left=427+marginWidth+"px";
			shuttersSub.style.left=570+marginWidth+"px";
			railingSub.style.left=713+marginWidth+"px";
			warrantySub.style.left=856+marginWidth+"px";
		}
	}
	homeSub.style.display = "none";
	sidingSub.style.display = "none";
	fibercementSub.style.display = "none";
	windowsSub.style.display = "none";
	roofingSub.style.display = "none";
	columnsSub.style.display = "none";
	deckingSub.style.display = "none";
	doorsSub.style.display = "none";
	brakesSub.style.display = "none";
	gutteringSub.style.display = "none";
	insulationSub.style.display = "none";
	shuttersSub.style.display = "none";
	railingSub.style.display = "none";
	warrantySub.style.display = "none";
}

function hoverHandler(tableID)
{
	hideAll()
	browser=navigator.appName
	if(browser="Microsoft Internet Explorer")
	{
		thisSub = document.getElementById(tableID);
		thisSub.style.display="inline";
	}
	else if(browser="Netscape")
	{
		thisSub = document.getElementById(tableID);
		thisSub.style.display="table";
	}
}
