(function($){
	$.fn.dropdown = function(params){
		
		var init = function (obj) {
			$('div', obj).css('left', $('a', obj).offset().left + 'px');
			obj.hover(
				function () { $('div', this).show(); },
				function () { $('div', this).hide(); }
			);
		}
		
		return this.find('li').each(function(){
			init($(this));
		});
	};
})(jQuery)