// Show Team Details

$(document).ready(function() {
 // hides the slickbox as soon as the DOM is ready
 // (a little sooner than page load)
  $('#video_details').hide();

   // hides the slickbox on clicking the noted link 
    $('a#video_hide').click(function() {
 $('#video_details').hide();
 return false;
  });
//shows video
  $('a#video_show').click(function() {
  $('#video_details').fadeIn('fast'); 
 return false;
  });
});
