jQuery.noConflict();

jQuery(document).ready(function(){
  jQuery('#navigation li').hover(
    function() { jQuery('ul', this).css('display', 'block'); },
    function() { jQuery('ul', this).css('display', 'none'); });

  if(jQuery.browser.msie && jQuery.browser.version.substr <= '6'){ 
    jQuery('#navigation li').hover(
      function() {
        jQuery('ul', this).css('display', 'block');
        jQuery('a', this).css('background', 'background:transparent url(fileadmin/res/img/background/bg_navigation.gif) center center repeat-x');
      },
      function() {
        jQuery('ul', this).css('display', 'none');
        jQuery('a', this).css('background', 'none');
      });
    jQuery('#navigation li ul li').hover(
      function() { jQuery(this).css('background', '#ff7f00'); },
      function() { jQuery(this).css('background', 'none'); });
  }
});