$(document).ready(function(){
 if (!($.browser.msie && $.browser.version < 7)) {
   $('#slide-img').cycle({
     fx:'fade',
     speed:2500,
     timeout:10000
   });
 }           

 $("div#menu ul li a").hover(function() {
    $(this).parent().find("ul").show('normal');
    
    $(this).parent().hover(function () {},
      function () {
        $(this).parent().find("ul").hide('normal');
      });
 });
});
