jQuery.noConflict()
jQuery(document).ready(function(){
  //topnav
  if(jQuery('#topnav a').length > 0){
    jQuery('#topnav a').each(function(){
      jQuery(this).mouseenter(function(){
        jQuery(this).stop(true).animate({ width: 342 });
      }).mouseleave(function(){
        jQuery(this).delay(1000).animate({ width: 65 });
      });
    });
    /*jQuery('#topnav').mouseenter(function(){
    jQuery(this).find('a').each(function(){
    jQuery(this).stop().animate({ width: 342 });
  });
  }).mouseleave(function(){
    jQuery(this).find('a').each(function(){
    jQuery(this).stop().animate({ width: 65 });
  });
  });*/
  }
  
  jQuery('#sword').focus(function () {
    if (jQuery(this).val() == "Suchbegriff...  ") {
      jQuery(this).val("");
    }
  }).blur(function () {
    if (jQuery(this).val() == "") {
      jQuery(this).val("Suchbegriff...  ");
    }
  });
});
