$(document).ready(function() { 	

	$('a').hover(function(){
		$(this).animate({ color: "black"}, 300);
		},
		function (){
		$(this).animate({ color: "#d5d5d5"}, 300);
	});

	$('.design').hover(function(){
		$(this).animate({left: "10px",}, 500);
		
		}, function() {
		$(this).animate({left: "30" }, 500);
	});
	
	$('.photography').hover(function(){
		$(this).animate({left: "250px",}, 500);
		
		}, function() {
		$(this).animate({left: "230px" }, 500);
	});


});