  $(document).ready(function() { 
    // drowDown init
    $('#header-menu-ul').superfish({
      animation : { opacity:"show", height:"show" },
      autoArrows : false,
      onHide : function(){
        $(this).parent().css('backgroundColor', '#FFFFFF');
        $(this).parent().find('>a')
          .css('color', '#424242')
          .css('backgroundImage', 'url(/images/menu-arrow.png)');
      },
      onBeforeShow : function(){
        $(this).parent().css('backgroundColor', '#00ADEE');
        $(this).parent().find('>a')
          .css('color', '#FFFFFF')
          .css('backgroundImage', 'url(/images/menu-arrow-white.png)');
      }
    });
    if ($.browser.msie) {
      var li_with = $('#header-menu-ul').children("li:has(ul)");
      li_with.mouseover(function(){
          $("ul", this).bgIframe({opacity:false});
      }).find("a").focus(function(){
        li_with.find("ul").bgIframe({opacity:false});
      });
    }
    // dropDown()
  });

