$(document).ready(function() {

	 $("#menu li").hover(
      function () {
        $(this).find("ul:first").toggle();
      }, 
      function () {
        $(this).find("ul:first").toggle();
      }
    );

	$('#acc').accordion({ 
	    active: false,
    	header: '.head',
		autoheight: false
	});
    
    

	
});