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