/* all pages include */

$(function() {
try {
  // CGI 系機能を http から https に転送する / 戻るhistory に残さない
  if (location.href.indexOf('.cgi') >= 0 &&
      location.protocol == 'http:' &&
      location.href.indexOf('mt-search.cgi') == -1
  ) {
    location.replace('https://'+location.hostname+location.pathname+location.search);
  }
} catch (e) {
}
});

