﻿var url;
url = window.location.toString();

var tempUrl;
tempUrl = url;
tempUrl = tempUrl.replace("http://", "");
tempUrl = tempUrl.substring(tempUrl.indexOf("/"), tempUrl.length);

if (url.toLowerCase().indexOf("gateapprenticeship.aiu3.net") > -1) {
    window.location = "http://apprenticeships.aiu3.net" + tempUrl;
}

//alert(tempUrl);
