/*!
*	TODO: run qunit, write docs, license, IE test, add slide, normal, fade in options
*/
;(function($) {

	$.fn.dropdown = function(options) {

		var opts = $.extend({}, $.fn.dropdown.defaults, options);

		return this.each(function() {
			
			var $this = $(this);

			// add has-sub for >> marker 
    	$('li', $this).hover(function() {
    		$('ul:first', this).show();
    	}, function() {
    		$('ul:first', this).hide();
    	});

    });

		// var o = $.meta ? $.extend({}, opts, $this.data()) : opts;
		
	};

	$.fn.dropdown.defaults = {
		// defaults
		// fadeIn, nav marking
	};

})(jQuery);
