/**
 * コンテンツ内の画像にカラーボックスを適用
*/
function setColorBox(opt) {
    var _options = $.extend({transition:"fade",opacity:0.75}, opt);

    //コンテンツ内の画像<a>にcolorbox適用
    $('.mainBodyPlaceholder a img').each(function() {
        $(this).parent().colorbox(_options);
    });
}
