jQuery(document).ready(function() {
	$('#menu ul > li').DropDown();
});

// Quick DropDown jQuery Extension by http://www.powerdev.ca
(function($) {
	$.fn.DropDown = function() {
		return this.each(function() {
			obj = $(this);
			
			obj.hover(function() {
			    $('ul:first', this).show('fast');
			}, function() {
			    $('ul:first',this).hide('fast');
			});
		});
	};
})(jQuery);
