	$(document).ready(function () {
		$('ul.gallery li a.test').hover(function () {
			var title = $(this).attr('rev').replace('#','</span>');
			$(this).animate({opacity: 1},200);
			$(this).append('<div><p><span>'+title+'</p></div>');
			$(this).children('div').slideDown(400);
		},function () {
			$(this).animate({opacity: 0.8},200);
			$(this).children('div').slideUp(400);
		});
		$(".gallery li a.test").fancybox({
			'zoomSpeedIn': 600,
			'zoomSpeedOut': 400,
			'easingIn': 'easeOutBack',
			'easingOut': 'easeInBack'
		});
	});
