//<![CDATA[
$(document).ready(function() {
	$("#mainmenu ul li").hoverIntent({
				sensitivity: 3, 
				interval: 200, 
				over: menudown, 
				timeout: 500, 
				out: menup
			}
  )
  function menudown(){
        $(this).parent().find('ul:visible').hide();
        $(this).children('ul').show();
      }
  function menup(){$(this).children('ul').fadeOut('slow');}

});
 //]]>