// JavaScript Document
$(function () {
    $('div.cj_boxLink').click(function () {
        var cj_boxLink = $(this).find('a');
        if (cj_boxLink.attr('target') == '_cj_blank') {
            window.open(cj_boxLink.attr("href"));
        }
        else window.location = cj_boxLink.attr('href');
        return false;
    });
    $('div.cj_boxLink').hover(function () {
        $(this).addClass('cj_hover');
    }, function () {
        $(this).removeClass('cj_hover');
    });
});
