$(document).ready(
function() {

if(
  ( navigator.userAgent.toLowerCase().indexOf('iphone') > -1 ) || 
  ( navigator.userAgent.toLowerCase().indexOf('ipad') > -1 )
  ) {
    null;
  } else {
    $('.videoGal').colorbox({
      iframe: true,
      width: '740px',
      height: '460px',
      scrolling: false,
      opacity:0.92,
      onOpen:function() {
        $('#cboxBottomCenter').css({
          height:'20px',
          'background-color':'transparent'
        });
        $('#cboxClose').css({
          visibility :'hidden'
        });
        $('#cboxClose').css({
          right:'50px',
          bottom:'35px'
        });
      },
      onComplete: function() {
  
        //alert($('#video').height());
      }
      }
    );
}
});
