$( document ).ready( function(){
	
	

	/** Connect block **/
	
	
	$('.footer-socialconnect span').hover(
		function(){
			$(this).find('a')
				.css({'opacity':0.6 })
				.animate({ 'opacity': 1 }, 250)
		},
		function(){
			$(this).find('a')
				.css({'opacity':1 })
				.animate({ 'opacity': 0.6 }, 150)
		}
	);
		
});




