$(document).ready(function () {
  $('ul#videos li[class^=video]').click(function () {
    $('div#video').show();
    $('div#video object').hide();
    $('div#video object.' + this.className).show();
    return false;
  });
});