(function($) {
	$.fn.ukcg_jumpers = function() {
		var jumpers = this;
		$('a', jumpers.addClass('jumpers-js')).hover(
			function() {
				$('span', $(this)).stop(true, true).fadeIn(200);
			},
			function() {
				$('span', $(this)).stop(true, true).fadeOut(200);
			}
		);
		
		return jumpers;
	};
})(jQuery);
