//var PROFILE = 'local';
var PROFILE = 'production_server';
//var PROFILE = 'test_server';

if(PROFILE=='local') {
  var URL = 'http://localhost/astuteshop.com/rev1/';
}

if(PROFILE=='production_server') {
  var URL = 'http://'+window.location.hostname+'/';
}

if(PROFILE=='test_server') {
  var URL = 'http://'+window.location.hostname+'/';
}



