$(document).ready( function() {

    //hide and show
    $('.hide_me').hide();
    $('#video1').show();
    $('a.show_div').click(function() {
      $('.hide_me').hide();
      var show_me = $(this).attr('href');
      $(show_me).fadeIn('fast');
      return false;
    });

});