jQuery(function($)
{
	$(".homeBox").mouseenter(function()
	{
		var ident = $(this).attr("id");
		$("#"+ident+" p").animate({"height" : "50px"}, "fast");
		$("#"+ident+" img.imgBox").animate({"opacity" : "0.7"}, "fast");
	}).mouseleave(function()
	{
		var ident = $(this).attr("id");
		$("#"+ident+" p").animate({"height" : "40px"}, "fast");
		$("#"+ident+" img.imgBox").animate({"opacity" : "1.0"}, "fast");
	});
});
