$(function() {

  /* hide the modal by default */
  $('div#mymodal').hide();

  /* open images inside a modal */
  tb_init('div.post a[href$=jpg], div.post a[href$=jpeg], div.post a[href$=png]');

  /* open movies in a modal */
  $('div.post a[href$=flv]').click(function() {
  
    $('#moviemodal > div').empty(); 
    var href = $(this).attr('href');
    var altplayer = 'http://www.elidon.net/pages/flvmovie.php?p='+escape(href);
    var link='#TB_inline?height=497&width=640;inlineId=moviemodal';
    var data = '/player.swf?file='+href+'&allowfullscreen=true&start=0&description=My%20Movie&controlbar=bottom&autostart=true&bufferlength=5&quality=true';

    //var object = '<object width=\"640\" height=\"480\" id=\"movie\" data=\"'+data+'\" type=\"application/x-shockwave-flash\"></object>';
    var object = '<embed src=\"'+data+'\" type=\"application/x-shockwave-flash\" width=\"640\" height=\"480\">&nbsp;</embed>';
 
    $('div#moviemodal a#movielink').attr('href', altplayer);

    $('#moviemodal > div').append(object);
    tb_show($(this).attr('title'), link, false);
    $('#moviemodal > div').empty();
    $('#moviemodal').hide();
    return false;

  });

  // make the header clickable
  $('#header').click(function() {
    document.location.href = "http://www.bierbommetje.net";
  });

});
