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