function WireInputs() {
    $('.closeOverlay').click(function() {
        $.fn.colorbox.close();   
    });

}

function ShowClose() {
    $('#cboxClose').show();
}

function HideClose() {
    $('#cboxClose').hide();
}


$(document).ready(function() {
    
    //Examples of how to assign the ColorBox event to elements
    $('a[rel="videoOverlay"]').colorbox({ rel: 'nofollow', iframe:true, width: 648, height: 399, top:130, opacity: '.8', returnFocus: false, overlayClose: false, /*onLoad: HideClose,*/onComplete: WireInputs });

});
