jQuery(document).ready(function() {
	jQuery('#nav-main li')
		.hover(function() {
			jQuery('ul', this).slideDown('fast');
		}, function() {
	jQuery('ul', this).slideUp('fast');
	});
});


