$(document).ready(function(){
	$('ul.folded').hoverIntent({
		over: function() {
			$(this).animate({height: "126px"},600);
		},
		out: function() {
			$(this).animate({height: "54px"},600);
		},
		sensitivity: 1,
		interval: 1000,
		timeout: 500
		}
	);

});

