$(function() {

	$(".item").hover(function() {

		$(this).parent().find("a").addClass("active");

	}, function() {

		$(this).parent().find("a").removeClass("active");

	});
	
	$(".description a").fancybox({
		'zoomOpacity'			: true,
		'zoomSpeedIn'			: 500,
		'zoomSpeedOut'			: 500
	});

});
