$(function() {
	//show/hide extranet 
	showExtranet();
});

function showExtranet() {
	var PageName = location.href.substring(location.href.lastIndexOf('/')+1);
	if((PageName != "" && PageName != "welcome-to-turley") || location.href.indexOf("contact") != -1)
		$("#divExtranet").hide();
	else 
		$("#divExtranet").show();

	if(PageName == "welcome-to-turley" || PageName == "")
		$("#header-slideshow-wrapper").show();
	else
		$("#header-slideshow-wrapper").hide();


}
