//CHECK PAGE FOR WAY FANCY NAV
if(location.pathname.match(/.htm/)){
	go = location.pathname.match(/\/[a-zA-Z_]{1,100}\./);
	if(go){
		go = go.toString();
		go = go.substr(1, go.length-2);
		window.location = "/?go="+go;
	}
}
