/**
 * Fix an overflow/clipping issue with HTML5 doctypes and colorbox
 * Bind to cbox_complete and override the CSS
 */
jQuery(document).bind('cbox_complete', function(){
  jQuery('#colorbox').css('overflow','visible');
});

jQuery(document).ready(function(){
  jQuery('.yt-colorbox').colorbox({'iframe':true,'width':900,height:506});
});;

