jQuery(document).ready(function () {
    var sDomain = new String('');
    var slocation = new String(document.location);
    slocation = slocation.toLowerCase();

    var njsLocalhost = slocation.indexOf('localhost');
    var njsDev = slocation.indexOf('.dev');
    var njsStg = slocation.indexOf('.stg');
    var njsLive = slocation.indexOf('www.');
    var njsDevSharePoint = slocation.indexOf('.spdev');
    var njsStgSharePoint = slocation.indexOf('.spstg');

    if (njsDev > 0 || njsLocalhost > 0) {

    }
    else {
        //Make sure site loads in www. mode
        if (njsLive <= 0) {
            slocation = slocation.replace("http://", "http://www.");
            window.location = slocation;
        }
    }
});
