
function MarkSelectedTab() {
	//where are we?
	var rootURL = "websitebusiness.com";
	var thisLocation = location.href;
	var thisTabElement;
	
	//is there www?
	if(thisLocation.indexOf("www.") > -1) {
		rootURL = "www.websitebusiness.com";
	}
	//are we .dev?
	if(thisLocation.indexOf("beta.") > -1) {
		rootURL = "beta.websitebusiness.com";
	}
	
	//front end
	if(thisLocation.indexOf(rootURL +"/default.aspx") > 0 || thisLocation == "http://"+ rootURL +"/" || thisLocation == "http://www."+ rootURL +"/") {
		thisTabElement = document.$("tmpl_tab_home");
	}
	else if(thisLocation.indexOf(rootURL +"/about-us.aspx") > 0) {
		thisTabElement = document.$("tmpl_tab_about_us");
	}
	else if(thisLocation.indexOf(rootURL +"/business-websites.aspx") > 0) {
		thisTabElement = document.$("tmpl_tab_business_websites");
	}
	else if(thisLocation.indexOf(rootURL +"/make-money-online.aspx") > 0) {
		thisTabElement = document.$("tmpl_tab_make_money_online");
	}
	else if(thisLocation.indexOf(rootURL +"/services.aspx") > 0) {
		thisTabElement = document.$("tmpl_tab_services");
	}
	else if(thisLocation.indexOf(rootURL +"/portfolio.aspx") > 0) {
		thisTabElement = document.$("tmpl_tab_portfolio");
	}
	else if(thisLocation.indexOf(rootURL +"/testimonials.aspx") > 0) {
		thisTabElement = document.$("tmpl_tab_testimonials");
	}
	else if(thisLocation.indexOf(rootURL +"/contact-us.aspx") > 0) {
		thisTabElement = document.$("tmpl_tab_contact_us");
	}
	
	//select the tab
	if(thisTabElement) thisTabElement.className = "selected";
}