
$(document).ready(function() 
{
	$(".block").hover(
		function () {
			$(this).stop().animate({top: 0}, 200);
		},
		function () {
			$(this).stop().animate({top: 5}, 200);
		}
	);
	
	$(".content").hide();
	
	$(".background").hide().fadeIn(600, function () {
		$(".content").slideDown(400);
	});
});
