$(document).ready(function(){
	$(".boxGallery").hoverIntent(down,up);
});

function down(){ $(".list").animate({height: 'toggle', opacity: 'toggle' },200);} 
function up(){ $(".list").animate({height: 'toggle', opacity: 'toggle' },300);}

