
function MarkSelectedTab() {
	//mark selected tab
	var rootURL = "chosenlist.com";
	var thisLocation = location.href;
	var thisTabElement;

	//front end
	if(thisLocation.indexOf("/classifieds/") > -1) {
		thisTabElement = document.$("tmpl_tab_classifieds");
	}
	else if(thisLocation.indexOf("/jobs/") > -1) {
		thisTabElement = document.$("tmpl_tab_jobs");
	}
	else if(thisLocation.indexOf("/community/") > -1) {
		thisTabElement = document.$("tmpl_tab_community");
	}
	else if(thisLocation.indexOf("/employers/") > -1) {
		thisTabElement = document.$("tmpl_tab_employers");
	}
	else if(thisLocation.indexOf("/cvn/") > -1) {
		thisTabElement = document.$("tmpl_tab_cvn");
	}
	
	//back end
	else if(thisLocation.indexOf(rootURL +"/admin/") > -1) {
		thisTabElement = document.$("tmpl_tab_home");
	}
	else if(thisLocation.indexOf(rootURL +"/admin/master/") > -1) {
		thisTabElement = document.$("tmpl_tab_master");
	}
	
	//select the tab
	if(thisTabElement) thisTabElement.className = "selected";
}
