/*
var base_url   = "http://r.dragon.co.jp/pc/out/www.verygoodtea.com/shop/";
var path       = location.pathname + location.search;
var regexp     = new RegExp(/\/shop\/(\w+)\.html/);
path.match(regexp);
var code = RegExp.$1;
var now = new Date();
var url = base_url + code + ".js?" + now.getTime();
if (document.createElement) window.onload = function() {
    var ele = document.createElement("script");
    ele.type = "text/javascript";
    ele.src = url;
    ele.charset = "UTF-8";
    document.body.appendChild(ele);
}
*/
