$(document).ready(function(){
	$(".block").hover(function() {
		$("ul li a", this).stop().animate({ marginTop: "9px", color: "#FFF" }, 400);
	},function() {
		$("ul li a", this).stop().animate({ marginTop: "3px", color: "#555" }, 400);
		//$("h2", this).stop().animate({ backgroundColor: "#444" }, 400);
		$("div", this).stop().animate({ height: "80px", marginTop: "26px", backgroundColor: "rgba(255, 255, 255, .5)" }, 400);
	});
	
	$("#office").hover(function() {
		//$("h2",this).stop().animate({ backgroundColor: "#FF5300"}, 400);
		$("div", this).stop().animate({ height: "106px", marginTop: "0", backgroundColor: "#FF5300" }, 400);
	},function() {
		/* Do nothing */
	});
	$("#bar").hover(function() {
		//$("h2",this).stop().animate({ backgroundColor: "#84BF15"}, 400);
		$("div", this).stop().animate({ height: "106px", marginTop: "0", backgroundColor: "#84BF15" }, 400);
	},function() {
		/* Do nothing */
	});
	$("#school").hover(function() {
		//$("h2",this).stop().animate({ backgroundColor: "#2BBACA"}, 400);
		$("div", this).stop().animate({ height: "106px", marginTop: "0", backgroundColor: "#2BBACA" }, 400);
	},function() {
		/* Do nothing */
	});
});
