$(document).ready(function() {   

  $("a.video_link").click(function() {

    var video_path = $(this).attr("id");

    var video_title = $(this).attr("title");

    var video_caption = $(this).attr("alt");



    if (video_title == "The Man with the World's Biggest Dick")

      $("div.video embed").css("display", "none");

    else

      $("div.video embed").css("display", "block");

    

    $("a.selected").removeClass("selected");

    $(this).addClass("selected");

    $("div.video embed").hide();

    $("div.video embed").replaceWith('<embed src="' + video_path + '" alt="' + video_title +  '" title="' + video_title + '"type="application/x-shockwave-flash" width="524" height="325" allowscriptaccess="always" allowfullscreen="true"></embed>');

    $("div.video p.caption").html(video_caption);

    $(".video_title").text(video_title);

  });

});  



function load() {

  // Do nothing

}