function changeSite()
{
  var newSite = "http://www.generationstore.com/";
          
  var currentURL = window.location + "";
  rExp = /.+\//gi;
  var newURL = currentURL.replace(rExp, "");
  newURL = newSite + newURL;
  window.location = newURL;
}
  // only use www.generationstore.com URL
  var currentLoc = window.location + " ";
  var RE = new RegExp(".+store.generationstore.+","i");
  if(currentLoc.match(RE))
  {
    changeSite();
  }
  var RE = new RegExp("http://generationstore.+","i");
  if(currentLoc.match(RE))
  {
    changeSite();
  }

