// JScript File
$(document).ready(function(){
	  $('.image p').hide().css("opacity", 0);
	  
	  $('.image').bind("mouseenter", (function()
	  {
			$(this).children('p').animate({height: "170px", opacity: 0.8},300);
	  }));
	  
	  $('.image').bind("mouseleave", (function()
	  {
			$(this).children('p').animate({height: "0px", opacity: 0},200);
	  }));
	  
});
