// Tells site where it is housed and adjusts navigation accordingly

var host = (location.host).toString();

// Checking to see if the file exists locally or remotely. This line will change per site
{
if (host == "216.153.182.153") {
//document.write("Host is 216.153.182.153")
var remoteHost = "http://216.153.182.153/TSE065wd"; 
}
if (host == "www.topstarexpress.com") {
//document.write("www.advancerealtygroup.com")
var remoteHost = "http://www.topstarexpress.com";
}
}