/**
 * header.js
 *
 * @see       jquery-1.3.2.js
 * @pachage   user-wedding
 * @copyright JOYJOY Inc. & Gourmet Navigator Inc.
 */

/**
 * テンプレートの読み込み
 *
 */
jQuery.fn.extend({

  loadPerts: function($class, $sid) {
    $.ajaxSetup({
      cache: false
    });

    sitedir = '/site/2/';
    if (location.protocol == 'https:') {
        sitedir = '/site_k/2/';
    }

    $("#headerMenu").load(sitedir + $sid + "/perts/header_menu.tpl");
    $("#headerInq").load(sitedir + $sid + "/perts/header_inq.tpl");
    $("#pertsCoupon").load(sitedir + $sid + "/perts/perts_coupon.tpl");
    $("#pertsInq").load(sitedir + $sid + "/perts/perts_inq.tpl");
    $("div.pertsInqV2").load(sitedir + $sid + "/perts/perts_inqV2.tpl");
    $("#pertsInqV3").load(sitedir + $sid + "/perts/perts_inqV3.tpl");
    $("#footerMenu").load(sitedir + $sid + "/perts/footer_menu.tpl", null, function(){
      $(this).setCurrentPage($class);
      initRollOverImages(); // jquery.rollover.js
    });

    return this;
  },

  loadHeader: function($class, $sid) {
    $.ajaxSetup({
      cache: false
    });

    sitedir = '/site/2/';
    if (location.protocol == 'https:') {
        sitedir = '/site_k/2/';
    }

    $("#pertsHeader").load(sitedir + $sid + "/perts/header.tpl");
    $("#pertsFooter").load(sitedir + $sid + "/perts/footer.tpl", null, function(){
      $(this).loadPerts($class, $sid);
      $('#sendmobile').click( function(){
        window.open(this.href, '_blank', 'width=700,height=550');
        return false;
      });
    });

    return this;
  }

});


