$(document).ready( function() {
  $('#accordion').accordion({ collapsible: true, autoHeight: false, active: false });
  $(".watch").click( function() {
    var anchor = $(this).is('a') ? $(this) : $(this).prev('a');
    var videoURL = anchor.attr("href");
    $('#videoplayer').html( QT_GenerateOBJECTText_XHTML( videoURL, '740', '480', '', 'AUTOPLAY', 'true', 'CONTROLLER', 'true', 'BGCOLOR', '#000000', 'KIOSKMODE', 'true') );
  });
  $(".watch").colorbox({ inline: true, href: '#videoplayer' });
});