$(document).ready(function() {

    $(document).pngFix();
    $('.services')
      .hover(
          function()
          {
           $('.s_menuLevel').css({'display': ''});
          },
          
          function()
          {
            $('.s_menuLevel').css({'display': 'none'});                        
          }
      )
      
    $('.instruments')
      .hover(
          function()
          {
           $('.i_menuLevel').css({'display': ''});
          },
          
          function()
          {
            $('.i_menuLevel').css({'display': 'none'});                        
          }
      )      

});
