$(document).ready( function() {
	$('#menu > li[class!="last"]').hoverIntent({
		sensitivity: 4,	// threshold in pixels for mouse movements
		interval: 10,		// how often does it check, in milliseconds
		over: function() {	// function to call when hovering
			$(this).addClass('over').find('ul').show().dropShadow();
		}, timeout: 150,	// how long to wait before calling the next function
		out: function() {	// function to call when done hovering 
			$(this).removeClass('over').find('ul').hide().removeShadow();
		}
	});
});

