// LightBox設定
$(function() {
    $('a.lightbox').lightBox({
        overlayBgColor: '#000',
        overlayOpacity: 0.6,
        imageLoading:  '/common/img/lightbox/lightbox-ico-loading.gif',
        imageBtnClose: '/common/img/lightbox/lightbox-btn-close.gif',
        imageBtnPrev:  '/common/img/lightbox/lightbox-btn-prev.gif',
        imageBtnNext:  '/common/img/lightbox/lightbox-btn-next.gif',
        containerResizeSpeed: 200,
        txtImage: '',
        txtOf: '/'
    });
});

// 外部リンク別ウィンドウ化 + Topsy
$(document).ready(function(){
    var selector = "a[href^=http]"
                 + ":not([href^=http://"  + document.domain + "])"
                 + ":not([href^=https://" + document.domain + "])";
    $(selector).click(function(){
        window.open(this.href, "_blank").focus();
        return false;
    });
});

var target_url = window.location.href;

