
function MarkSelectedTab() {
	var rootURL = "www.azraci.com";
	var thisLocation = location.href;
	
	//front end
	if(thisLocation.indexOf(rootURL+ "/default.aspx") > 0 || thisLocation == "http://"+ rootURL +"/") {
		document.getElementById("tmpl_tab_home").className = "selected";
	}
	else if(thisLocation.indexOf(rootURL+ "/about_us.aspx") > 0) {
		document.getElementById("tmpl_tab_about").className = "selected";
	}
	else if(thisLocation.indexOf(rootURL+ "/testimonials.aspx") > 0) {
		document.getElementById("tmpl_tab_about").className = "selected";
	}
	else if(thisLocation.indexOf(rootURL+ "/newsletter.aspx") > 0) {
		document.getElementById("tmpl_tab_about").className = "selected";
	}
	else if(thisLocation.indexOf(rootURL+ "/installation.aspx") > 0) {
		document.getElementById("tmpl_tab_installation").className = "selected";
	}
	else if(thisLocation.indexOf(rootURL+ "/our_services.aspx") > 0) {
		document.getElementById("tmpl_tab_services").className = "selected";
	}
	else if(thisLocation.indexOf(rootURL+ "/residential_services.aspx") > 0) {
		document.getElementById("tmpl_tab_services").className = "selected";
	}
	else if(thisLocation.indexOf(rootURL+ "/commercial_services.aspx") > 0) {
		document.getElementById("tmpl_tab_services").className = "selected";
	}
	else if(thisLocation.indexOf(rootURL+ "/products.aspx") > 0) {
		document.getElementById("tmpl_tab_products").className = "selected";
	}
	else if(thisLocation.indexOf(rootURL+ "/special_offers.aspx") > 0) {
		document.getElementById("tmpl_tab_specials").className = "selected";
	}
	else if(thisLocation.indexOf(rootURL+ "/contact_us.aspx") > 0) {
		document.getElementById("tmpl_tab_contact").className = "selected";
	}
	else if(thisLocation.indexOf(rootURL+ "/quote_request.aspx") > 0) {
		document.getElementById("tmpl_tab_contact").className = "selected";
	}
	
	//admin
	if(thisLocation.indexOf(rootURL+ "/admin/default.aspx") > 0 || thisLocation == "http://"+ rootURL +"/admin/") {
		document.getElementById("tmpl_tab_home").className = "selected";
	}
	else if(thisLocation.indexOf(rootURL+ "/admin/system_emails.aspx") > 0) {
		document.getElementById("tmpl_tab_cnewsletter").className = "selected";
	}
	else if(thisLocation.indexOf(rootURL+ "/admin/emailer.aspx") > 0) {
		document.getElementById("tmpl_tab_snewsletter").className = "selected";
	}
	else if(thisLocation.indexOf(rootURL+ "/admin/subscribers.aspx") > 0) {
		document.getElementById("tmpl_tab_subscribers").className = "selected";
	}
	else if(thisLocation.indexOf(rootURL+ "/admin/queue.aspx") > 0) {
		document.getElementById("tmpl_tab_queue").className = "selected";
	}
}