$(function (){
  $("#hand").flash({src:'/hand.swf', width:204, height:177, scale:'exactfit', bgcolor:'#CDDDB9', wmode:'transparent', allowscriptaccess:'always', id:'handje'});
  setTimeout(function(){$("#echt").fadeOut("slow", function(){
    $("#handje")[0].SetVariable("sound", "on");
    $("#handje")[0].SetVariable("over", "0");
  });}, 1000);
  $(".mp3").each(function(){
    $(this).flash({src:'mp3player.swf', width:300, height:20, bgcolor:'#CDDDB9', flashvars:{file:'/mp3/'+$(this).text()}});
  });
  $(".youtube").click(function (){
    var code = $(this).text();
    code = code.replace("\"", "");
    $(this).unbind().replaceWith("<div style='display:block;'><object width=\"425\" height=\"355\"><param name=\"movie\" value=\"http://www.youtube.com/v/" + code + "&hl=nl&fs=1\"></param><param name=\"wmode\" value=\"transparent\"></param><param name=\"allowfullscreen\" value=\"true\"></param><embed src=\"http://www.youtube.com/v/" + code + "&hl=nl&fs=1\" type=\"application/x-shockwave-flash\" wmode=\"transparent\" allowfullscreen=\"true\" width=\"425\" height=\"355\"></embed></object></div>");
  });
});
