// jQuery wrapper 
(function ($) {
	// DOM ready
	$(function () {
		
		$('.icons span.link').parent('a').bind('mouseenter.icons mouseleave.icons', function(){
			$('span', $(this)).toggleClass("hover");
		});
		
	});
}(jQuery));
