$(document).ready(function(){

// Animate a links
  $("#bio p a").hover(function(){
	  $(this).stop().animate({ color: "#833892" }, 200);
  },function(){
  	  $(this).stop().animate({ color: "#525052" }, 400);
  });
    
// Animate social links
  $("div.links a").hover(function(){
	  $(this).stop().animate({ opacity: 1.00 }, 200);
  },function(){
	  $(this).stop().animate({ opacity: 0.50 }, 600);
  });
  
// Animate social links
  $("a.add-mustache").click(function(){
	  $("#container").addClass('mustache');
  }).hover(function(){
  	  $(this).stop().animate({ color: "#833892" }, 200);
  },function(){
  	  $(this).stop().animate({ color: "#9F9F9F" }, 400);
  });
  
});
