if (screen.width<650)
{
	url = "http://navigators.inc.ly";	
	pathArray = window.location.pathname.split( '/' );

	foldername = pathArray[pathArray.length-2].toString();
	filename = pathArray[pathArray.length-1].toString();
	
	if(foldername == "about"){
		if(filename == "story.asp"){
			url += "/story";
		}
		else if(filename == "process.asp"){
			url += "/process";
		}
		else if(filename == "team.asp"){
			url += "/team";
		}
		else{
			url += "/difference";
		}
	}
	else if(foldername == "contact"){
		url += "/contact";
	}
	
	window.location= url;
}




