// JavaScript Document
$(document).ready(function() {
													 	
	$('#menu li ul').css({
		display: "none",
		whiteSpace: "nowrap",
		left: "auto"
	});
	
	$('#menu li').hoverIntent(function() {
		$(this)
			.find('ul')
			.stop(true, true)
			.slideDown('slow');
	}, function() {
		$(this)
			.find('ul')
			.stop(true,true)
			.fadeOut('slow');
	});
	
});

