$(document).ready(function(){
	$('.social-links A').hover(function(){
		$(this).stop();
		$(this).animate({top: 0}, 200);
	},function(){
		$(this).stop();
		$(this).animate({top: -10}, 200);
	});
	
	$('#fade-effect A').hover(function(){
		$(this).stop();
		$(this).fadeTo('slow', 0.5);
		
	}, function(){
		$(this).stop();
		$(this).fadeTo('slow', 1);
	})
	
});
