// ----------------------------------------
// pop up
// ----------------------------------------
$(document).ready( function () {
    $('.popup').click(function(){
        window.open(this.href, '_blank');
        return false;
    });
});


// ----------------------------------------
// Box Link Hover
// ----------------------------------------
$(function () {
    $('.boxLink').click(function () {
        var boxLink = $(this).find('a');
        if (boxLink.attr('target') == '_blank') {
            window.open(boxLink.attr('href'));
        }
        else window.location = boxLink.attr('href');
        return false;
    });
    $('.boxLink').hover(function () {
        $(this).addClass('boxLink_over');
    }, function () {
        $(this).removeClass('boxLink_over');
    });
});



// ----------------------------------------
// sub window open
// ----------------------------------------
var sub_page={
    windowCenter:{
    width:780,
    height:620,
    center:1,
    scrollbars:1,
    resizable:0
    }
};

