$(document).ready(function(){ 
   $(".pick ul li:first").hoverIntent(down,up);

	$(document).ready(function(){ 
		// scroll
		$(".scroll div").jCarouselLite({
			btnNext: ".next",
			btnPrev: ".previous",
			visible: 5,
			scroll: 1,
			speed: 500,
			circular: false,
			vertical: true
		});
		$(".comment ul li:last").css("border", "none");
	});
});
 
function down(){  $(".list_gallery").animate({height: 'toggle', opacity: 'toggle' },200);} 
function up(){ $(".list_gallery").animate({height: 'toggle', opacity: 'toggle' },300);}