$(document).ready(function(){
	$("#section-accordion p:last").css('height', '120px');
	$("#section-accordion p:last").css('position', 'absolute');
	$("#section-accordion p:last").css('bottom', '0');
	$("#section-accordion p").hover(
		function(){
			$(this).animate( { height:"400px" }, { queue:false, duration:750 } );
			$(this).prev().animate( { height:"120px" }, { queue:false, duration:750 } );
			$(this).next().animate( { height:"120px" }, { queue:false, duration:750 } );
		}
	);
});