// Slide Menu

jQuery(document).ready(function () {	
	jQuery('#menu ul li').hover(
		function () {
			jQuery('ol', this).slideDown(330);
		}, 
		function () {
			jQuery('ol', this).fadeOut(320);
		}
	);
});


