$(function() {
	$('#social img').animate({
			"opacity" : 0.5
		});	
	$('#social img').hover(function(){
		$(this).stop().animate({"opacity":1});
	}, function () {
		$(this).stop().animate({"opacity":.5});
	});

});



