(function($) {
	$.fn.ukcg_hopper = function() {
		var hopper = this;
		$('ul', hopper).mouseenter(function() {
			$('ul li', hopper.removeClass('hopper-js').addClass('hopper-js')).each(function(index) {
				$('.label', $(this).delay(index * 200).stop(true, true).fadeIn(200)).stop(true, true).fadeIn(200);
			});
		});
		$('ul', hopper).mouseleave(function() {
			$('ul li .label', hopper).hide();
			$('ul li:not(.active)', hopper).hide();
			hopper.removeClass('hopper-js');
		});
		
		return hopper;
	};
})(jQuery);
