(function($){
	$.fn.dropdown = function(params){
		
		return this.find('li:has(ul)').each(function(){
			$(this).hover(
				function () {
					$(this).addClass('hover');
				},
				function () {
					$(this).removeClass('hover');
				}
			);
		});
	};
})(jQuery)