$(document).ready(function() {

	$('.beerCat ul li').hover(function() {
		$("p", this).css("visibility", "visible");
		$("div", this).animate({bottom: "12px" }, 200);
	}, function() {
		$("p", this).css("visibility", "hidden");
		$("div", this).animate({bottom: "5px" }, 200);
		$("div", this).dequeue();
	});
	
});

