$(function() {
	$("a.pic-link").fancybox();
	$(".intro-menu-wrap-pic a").hover(function() {
		$(this).next(".intro-menu-hover-text").animate({opacity: "show", top: "-75"}, "slow");
	}, function() {
		$(this).next(".intro-menu-hover-text").animate({opacity: "hide", top: "-85"}, "fast");
	});
});
