$(document).ready(function(){

$('#social_media_box').mouseenter(function() {
	  $(this).stop().animate({top:-30},"slow");
  }).mouseleave(function() {
	  $(this).stop().animate({top:-700},"slow");
  });
$('.resources>a').click(function() {
					return false;
				});
});
