$(document).ready(function() {
   if($('body.vorschaltseite').length) {
      $('#umfluss').append('<a id="bigde" href="'+$('body.vorschaltseite #links a:last').attr('href')+'" style="height:'+$('body.vorschaltseite #links').height()+'px;width:'+($('body.vorschaltseite #links').width()*1+35)+'px;"></a>');
      $('#umfluss').append('<a id="bigen" href="'+$('body.vorschaltseite #rechts a:last').attr('href')+'" style="height:'+$('body.vorschaltseite #rechts').height()+'px;width:'+($('body.vorschaltseite #rechts').width()*1+35)+'px;"></a>');
      $("#bigde").hover(function(){
         $('#sprachen li:first a').addClass('hover');
      },function(){
         $('#sprachen li:first a').removeClass('hover');
      });
      $("#bigen").hover(function(){
         $('#sprachen li:last a').addClass('hover');
      },function(){
         $('#sprachen li:last a').removeClass('hover');
      });
   }
});
if($.browser.msie && $.browser.version<7) {
   DD_belatedPNG.fix('.schatten');
}