$(document).ready(function(){
	$("#portfolio").jCarouselLite({
		btnNext: ".next",
		btnPrev: ".back",
		visible: 1,
		speed: 400,
		circular: false,
		btnGo:
			[".logo"]

	});
	$(".next, .back, .about-toggle, .logo").click(function() {
		return false;
	});
	$(".about-toggle").click(function () {
		$(this).toggleClass("close");
		$(".arrow").toggle();
		if ($(".about-toggle").hasClass("close") === true) {
			$("#mask").animate({"top": "-=439px"}, 300);
		} else {
			$("#mask").animate({"top": "+=439px"}, 300);
		}
	});
	$("#portfolio ul li").hoverIntent({
		sensitivity:3,
		interval:75,
		over: function(){
			$(this).children('.zoom').fadeIn(600);
		},
		timeout:300,
		out: function(){
			$(this).children('.zoom').fadeOut(600);
		}
	});
});
