jQuery(document).ready(function() {
						   
jQuery.noConflict();

	jQuery("#cases-img a").hover(function() {
		jQuery(this).find("p").animate({opacity: "show", top: "-10"}, 400);
	}, function() {
		jQuery(this).find("p").animate({opacity: "hide", top: "0"}, "slow");
	});


});
