if(location.toString().match("s-8-hiking-shoes.aspx") != null)
{
    document.getElementById("HIKING").className = 'ActiveTab';
}
if(location.toString().match("walking-shoes.aspx") != null || location.toString().match("walking.aspx") != null)
{
    document.getElementById("WALKING").className = 'ActiveTab';
}
if(location.toString().match("s-6-running-shoes.aspx") != null || location.toString().match("running.aspx") != null)
{
    document.getElementById("RUNNING").className = 'ActiveTab';
}
if(location.toString().match("golf-shoes.aspx") != null)
{
    document.getElementById("GOLF").className = 'ActiveTab';
}
if(location.toString().match("court-shoes.aspx") != null)
{
    document.getElementById("COURT").className = 'ActiveTab';
}
if(location.toString().match("s-10-water-sport-shoes.aspx") != null || location.toString().match("-water-sport.aspx") != null)
{
    document.getElementById("WATER").className = 'ActiveTab';
}


if(location.toString().match("checkout1.aspx") != null || location.toString().match("checkoutanon.aspx") != null || document.getElementById("pnlCheckoutImage") != null || document.getElementById("checkoutheadergraphic") != null)
{
    document.getElementById("HomeRight").style.display = "none";
    document.getElementById("HomeCenterContent").style.backgroundColor = "white";
    document.getElementById("HomeCenterContent").style.margin = "0px";
    
	if (document.getElementById("_ctl1") != null)
		document.getElementById("_ctl1").style.width = "100%";
	if (document.getElementById("pnlMain") != null)
		document.getElementById("pnlMain").style.width = "auto";
	if (document.getElementById("HomeCenterContent") != null)	
		document.getElementById("HomeCenterContent").style.width = "auto";
}