$(function(){
	$("h1 a").hover(function(){
		$(this).stop().animate({marginTop:"30px"}, 500, "easeOutQuad");
	}, function(){
		$(this).stop().animate({marginTop:"40px"}, 500, "easeOutQuad");
	});

	$("#rss .logo, #rss .choose").hover(function(){
		$("#rss .choose").stop().animate({opacity:1, paddingRight:"0px"}, 500, "easeOutQuad");
	}, function(){
		$("#rss .choose").stop().animate({opacity:0, paddingRight:"20px"});
	})

	$("#navigation a").hover(function(){
		$(this).stop().animate({paddingLeft:"24px", paddingRight:"20px"}, 500, "easeOutQuint");
	}, function(){
		$(this).stop().animate({paddingLeft:0, paddingRight:0}, 500, "easeOutQuad");
	});

	$("#blogposts a").bigTarget();

	$("#gallery li").hover(function(){
		$(this).find("img").stop().animate({top:"225px"}, {duration:250, easing:"easeOutQuad"});
	}, function(){
		$(this).find("img").stop().animate({top:"0px"}, {duration:1000, easing:"easeOutExpo"});
	});
});