$(document).ready(function()
{
	$(".top ul li:first").addClass("first");
	
	$(".latest-project .right-side, .project").hover(
		function()
		{
			$(this).find(".leftarrow").stop().animate({
					left: "0"
				}, 1000
			);
			$(this).find(".rightarrow").stop().animate({
					right: "0"
				}, 1000
			);
		},
		function()
		{
			$(this).find(".leftarrow").stop().animate({
					left: "-62px"
				}, 1000
			);
			$(this).find(".rightarrow").stop().animate({
					right: "-62px"
				}, 1000
			);
		}
	);
});
