$(document).ready(function(){
  var el = $('#header-flash');
  var path = "swf/Header.swf";
  if (el.hasClass('pl')) path = "swf/Header.swf";
  if (el.hasClass('en')) path = "swf/Header_eng.swf";
  if (el.hasClass('de')) path = "swf/Header_deu.swf";
    $("#fblikebox").hover(
        function(){
            jQuery(this).stop(true, false).animate({
                right:"-50"
            },"medium");
        },function(){
            jQuery(this).stop(true, false).animate({
                right:"-250"
            },"medium");
        },500

        );
  swfobject.embedSWF(
    path,
    "header-flash", "760", "240", "9.0.0", "swf/expressInstall.swf"
  );

  $("a.lightbox").lightBox({fixedNavigation:true});
});

