$(document).ready(function()
{
  	$("#tableright ").css("border","0");
  	
	var pathnameright = window.location.pathname;
	var sitesectionright = "";
	var last="";
	
	if(pathnameright != null)
	{
		if(pathnameright.indexOf("/approved/")!= -1)
		{
			$("#contactmediv").show();
		}
		last = pathnameright.lastIndexOf("/");
		if (last !=-1)
		{
			sitesectionright = pathnameright.substr(last+1,pathnameright.length);
			if(sitesectionright.length !=0)
			{
				$("#contactuslink").attr("href", "http://www.tayloredway.com/henleyskn/index.php/welcome/contact/" + sitesectionright);
				if(sitesectionright == "approved")
				{$("#approvedDevsdiv").show();}
				
				if(sitesectionright == "market")
				{$("#capitalappreciation").show();}
				
				if(sitesectionright == "marriot" || sitesectionright == "fourseasons" || sitesectionright == "silver" || sitesectionright == "christophe")
				{
					$(".clear").css("height","55px");
				}
				
			}
		}
	}
});
