// SOCIALS TAB EFFECT
	$(document).ready(function(){
	var easing = 'swing';
	
	$("#fb").mouseover(function(event){
	$(this).stop().animate({marginTop: '0'}, 100, easing);
	});
	$("#fb").mouseout(function(event){
	$(this).stop().animate({marginTop: '-14px'}, 200, easing);
	});
	

	
	
	$("#tw").mouseover(function(event){
	$(this).stop().animate({marginTop: '0'}, 100);
	});
	$("#tw").mouseout(function(event){
	$(this).stop().animate({marginTop: '-14px'}, 200);
	});

});
