(function($){
	$.fn.mysDropDownMenu = function(options) {  
		// If options exist, merge them with the default settings
		options = $.extend({
			fadeDuration:	400
		}, options);
		
		return this.each(function() {
			var obj = $(this);
			
			// Plugin code here
			$('ul', obj).css({display: 'none'}); // Opera Fix
			$('li', obj).hover(function() {
				$(this).find('ul:first').css({visibility: 'visible', display: 'none'}).show();
			}, function() {
				$(this).find('ul:first').css({visibility: 'hidden'});
			});
		});
	};
})(jQuery);
