// JavaScript Document
jQuery(document).ready(function () {	
	jQuery('.nav li').hover(
		function () { jQuery('ul', this).stop(true, true).slideDown(120); },
		function () { jQuery('ul', this).slideUp(120); }
	);
});

