$(document).ready(function(){
	
 $('div.puff').hover(function () {
		var pHeight = $(this).find('p').height();
		pHeight = pHeight + 60;
		$(this).find('.pufftext').stop().animate({height:pHeight},{queue:false, duration:600, easing: 'easeOutQuad'})
		$(this).addClass('hover');
		Cufon.replace($(this).find('h2'), { color: '#fff' });
    }, function () {
		$(this).find('.pufftext').stop().animate({height:'40px'},{queue:false, duration:600, easing: 'easeOutQuad'})
		$(this).removeClass('hover');
		Cufon.replace($(this).find('h2'), { color: '#000' });
    });	
});

   
