var siteStuff = {
  getSiteData: function(s) {
    var t = {};
    if(s == "us") {
      t.site = "us"
      t.language = "us-english"
      t.region = "us"
      t.selling = true
      t.sourceID = 1
      t.priceID = 1
      t.hbxStoreID = 1
      t.hbxRegion = "NorthAmerica"
    }
    else if(s == "uk") {
      t.site = "uk"
      t.language = "uk-english"
      t.region = "uk"
      t.selling = true
      t.sourceID = 3
      t.priceID = 2
      t.currency = "GBP"
      t.hbxStoreID = 2
      t.hbxRegion = "Europe"
    }
    else if(s == "fr") {
      t.site = "fr"
      t.language = "french"
      t.region = "fr"
      t.selling = true
      t.sourceID = 3
      t.priceID = 3
      t.hbxStoreID = 3
      t.hbxRegion = "Europe"
    }
    else if(s == "de") {
      t.site = "de"
      t.language = "german"
      t.region = "de"
      t.selling = true
      t.sourceID = 3
      t.priceID = 4
      t.hbxStoreID = 4
      t.hbxRegion = "Europe"
    }
    else if(s == "jp") {
      t.site = "jp"
      t.language = "japanese"
      t.region = "jp"
      t.selling = false
      t.hbxRegion = "Japan"
    }
    else if(s == "at") {
      t.site = "at"
      t.language = "german"
      t.region = "at"
      t.selling = true
      t.sourceID = 3
      t.priceID = 6
      t.hbxStoreID = 6
      t.hbxRegion = "Europe"
    }
    else if(s == "be") {
      t.site = "be"
      t.language = "uk-english"
      t.region = "be"
      t.selling = true
      t.sourceID = 3
      t.priceID = 7
      t.hbxStoreID = 7
      t.hbxRegion = "Europe"
    }
    else if(s == "ie") {
      t.site = "ie"
      t.language = "uk-english"
      t.region = "ie"
      t.selling = true
      t.sourceID = 3
      t.priceID = 8
      t.hbxStoreID = 8
      t.hbxRegion = "Europe"
    }
    else if(s == "nl") {
      t.site = "nl"
      t.language = "uk-english"
      t.region = "nl"
      t.selling = true
      t.sourceID = 3
      t.priceID = 9
      t.hbxStoreID = 9
      t.hbxRegion = "Europe"
    }
    else if(s == "kr") {
      t.site = "kr"
      t.language = "korean"
      t.region = "kr"
      t.selling = false
      t.hbxRegion = "Asia"
    }
    else if(s == "it") {
      t.site = "it"
      t.language = "italian"
      t.region = "it"
      t.selling = true
      t.sourceID = 3
      t.priceID = 11
      t.hbxStoreID = 11
      t.hbxRegion = "Europe"
    }
    else if(s == "ch") {
      t.site = "ch"
      t.language = "uk-english"
      t.region = "ch"
      t.selling = true
      t.sourceID = 3
      t.priceID = 12
      t.hbxStoreID = 12
      t.hbxRegion = "Europe"
    }
    else if(s == "int") {
      t.site = "int"
      t.language = "uk-english"
      t.region = "int"
      t.selling = false
      t.hbxRegion = "International"
    }
	else if(s == "cn") {
	  t.site = "cn"
	  t.language = "chinese"
	  t.region = "cn"
	  t.selling = false
	  t.hbxRegion = "Asia"
	}
	else if(s == "cn-en") {
	  t.site = "cn-en"
	  t.language = "uk-english"
	  t.region = "cn-en"
	  t.selling = false
	  t.hbxRegion = "Asia"
	}
    else {
      t = null;
    }
    return t;
  },
  
  getSiteFromCookie: function() {
    var dc = document.cookie;
    var prefix = "site=";
    var begin = dc.indexOf("; " + prefix);
  
    if (begin == -1) {
      begin = dc.indexOf(prefix);
      if (begin != 0) return "int";
    }
    else {
      begin += 2;
    }
    var end = document.cookie.indexOf(";", begin);
    if (end == -1) {
      end = dc.length;
    }
    var s = unescape(dc.substring(begin + prefix.length, end));
    if(!s) {
      s = "int";
    }
    return s;
  }

}

