(function() {
    // ロゴのリプレイス
    jQuery('#logo').find('img').attr('src', 'http://demo.openskip.org/custom/images/header_logo.png');
    
    
    // フッターのリプレイス
    jQuery('#footer').html('<div class="info"><div class="first"><b><a onclick="open_site();" href="#">このサイトについて</a> - <a onclick="open_rule();" href="#">利用規約</a> - <a onclick="open_hiki();" href="#">Hiki記法</a></b></div><div class="second">このサイトは、SKIPのデモサイトです。不明な点は、info@openskip.org まで。</div></div><div class="powered_by">powered_by<a href="http://www.openskip.org/"><img alt="Footer_logo" src="http://demo.openskip.org/custom/images/footer_logo.png" /></a></div>');
    jQuery('#other_link')
    .toggle(function() {
        jQuery('#other_links').css('right',(jQuery(window).width() - jQuery(this).offset().left - jQuery(this).width())).show();
    }, function() {
        jQuery('#other_links').hide();
    });
    jQuery('body')
    .click(function() {
        jQuery('#other_links').hide();
    });
})(jQuery);
// フッターで利用できるサブウインドウポップアップ表示メソッド
function sub_window_open(url, title, width, height) {
  sub_window = window.open(url, title, 'width='+width+',height='+height+',resizable=yes,scrollbars=yes');
  sub_window.focus();
};
function open_hiki() { sub_window_open('http://demo.openskip.org/hiki.html', 'Hiki記法', 500,600); };
function open_rule() { sub_window_open('http://demo.openskip.org/custom/rules.html', '利用規約', 780,700); };
function open_site() { sub_window_open('http://demo.openskip.org/custom/about_this_site.html', 'このサイトについて', 720,660); };

