
function MarkSelectedTab() {
	//mark selected tab
	var rootURL = "www.legalace.com";
	var thisLocation = location.href;
	var thisTabElement;
	
	//front end
	if(thisLocation.indexOf(rootURL +"/default.aspx") > -1 || thisLocation == "http://"+ rootURL +"/") {
		document.$("tmpl_tab_image").src = "/_IMAGES/templates/www_master/tabs_home.jpg";
	}
	else if(thisLocation.indexOf(rootURL +"/about_us.aspx") > -1) {
		document.$("tmpl_tab_image").src = "/_IMAGES/templates/www_master/tabs_about.jpg";
	}
	else if(thisLocation.indexOf(rootURL +"/how_it_works.aspx") > -1) {
		document.$("tmpl_tab_image").src = "/_IMAGES/templates/www_master/tabs_howitworks.jpg";
	}
	else if(
		thisLocation.indexOf(rootURL +"/legal_documents.aspx") > -1 ||
		thisLocation.indexOf(rootURL +"/business_law/") > -1 ||
		thisLocation.indexOf(rootURL +"/family_law/") > -1 ||
		thisLocation.indexOf(rootURL +"/trademarks_copyrights/") > -1 ||
		thisLocation.indexOf(rootURL +"/wills_estates/") > -1 ||
		thisLocation.indexOf(rootURL +"/account/category.aspx") > -1
	) {
		document.$("tmpl_tab_image").src = "/_IMAGES/templates/www_master/tabs_legaldocs.jpg";
	}
	else if(thisLocation.indexOf(rootURL +"/guarantee.aspx") > -1) {
		document.$("tmpl_tab_image").src = "/_IMAGES/templates/www_master/tabs_guarantee.jpg";
	}
	
	//account
	else if(thisLocation.indexOf(rootURL +"/account/survey.aspx?survey_customer_id") > -1) {
		thisTabElement = document.$("tmpl_tab_mysurvey");
	}
	else if(thisLocation.indexOf(rootURL +"/account/survey.aspx?r=get_help") > -1) {
		thisTabElement = document.$("tmpl_tab_help");
	}
	
	//back end
	else if(thisLocation.indexOf(rootURL +"/admin/survey/") > -1) {
		thisTabElement = document.$("tmpl_tab_survey");
	}
	else if(thisLocation.indexOf(rootURL +"/admin/orders/") > -1) {
		thisTabElement = document.$("tmpl_tab_orders");
	}
	else if(thisLocation.indexOf(rootURL +"/admin/master/") > -1) {
		thisTabElement = document.$("tmpl_tab_master");
	}
	else if(thisLocation.indexOf(rootURL +"/admin/") > -1) {
		thisTabElement = document.$("tmpl_tab_home");
	}
	
	//select the tab
	if(thisTabElement) thisTabElement.className = "selected";
	
	//handle logout link
	if(document.$("logout_link")){
		if(document.cookie.indexOf("session_id") != -1){
			document.$("logout_link").style.display = "";
		}else{
			document.$("logout_link").style.display = "none";
		}
	}
}