
  $(document).ready(function(){
      $('a[href$=jpg]').attr('rel','gallery').lightbox();
      $('#menu li').bind('mouseleave',function(){
        $(this).children('ul').hide();
      }).bind('mouseenter',function(){
        $(this).children('ul').show();
      });

  });
