// JavaScript Document

$(document).ready(function() {
		$('#nav ul').hide();
		
		$('#nav li').hoverIntent({
			over: startHover,
			out: endHover,
			timeout: 500
		});
		
		function startHover(){
			$(this).children('ul').slideDown();
		}
		
		function endHover() {
			$(this).children('ul').delay(600).fadeOut();
		}

	}); //ready
