$(function() {
	$(".serv").hover(
			function() {
				var start_loc = "-12px";
				var bottom_loc = "8px";
				var end_loc = "0px";
				$(".serv-icon,.serv-title", this).css("opacity", "0.5");
				$(".serv-bar", this).css("top", start_loc).show().animate( {
					opacity : "1",
					top : bottom_loc
				}, 250).animate( {
					top : end_loc
				}, 200);
			},
			function() {
				var start_loc = "-12px";
				var bottom_loc = "8px";
				var end_loc = "0px";
				$(".serv-icon,.serv-title", this).css("opacity", "");
				$(".serv-bar", this).css("top", start_loc)
						.css("opacity", "0.5").hide();
			});
});