$(document).ready(function(){
	$(".workItem").hover(
	function() {
		$(this).children(".workInfo").animate({opacity: "show", top: "-75"}, "slow");
	}, function() {
		$(this).children(".workInfo").animate({opacity: "hide", top: "-85"}, "fast");
	});
});
