$(document).ready(function() {
    $("#download-panel ul").hide();

    $("#download-panel h2 a").toggle(
      function() {
          $("#download-panel ul").slideDown();
          $("#download-panel").css("background", "#2a2a2a url(img/downloads-panel-up.gif) left bottom no-repeat");
          return false;
      },
      function() {
          $("#download-panel ul").slideUp();
          $("#download-panel").css("background", "#2a2a2a url(img/downloads-panel.gif) left bottom no-repeat");
          return false;
      }
    );

    $(".videoModal").colorbox();
      
});

