$(document).ready(function () {
	$("#game_block").hover(
		function() {
			$("#game_bar_hover")
				.animate({ 
					top: "0px"
				}, 150);
		},
		function() {
			$("#game_bar_hover").animate({ 
				top: "10px"
			}, 150);
		}
	);
	$("#app_block").hover(
			function() {
				$("#app_bar_hover")
					.animate({ 
						top: "0px"
					}, 150);
			},
			function() {
				$("#app_bar_hover").animate({ 
					top: "10px"
				}, 150);
			}
		);
	$("#generic_block").hover(
			function() {
				$("#generic_bar_hover")
					.animate({ 
						top: "0px"
					}, 150);
			},
			function() {
				$("#generic_bar_hover").animate({ 
					top: "10px"
				}, 150);
			}
		);
});