$(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");
	});
	$(".rounded-img").load(function() {
		$(this).wrap(function(){
			return '<span class="' + $(this).attr('class') + '" style="background:url(' + $(this).attr('src') + ') no-repeat center center; width: ' + $(this).width() + 'px; height: ' + $(this).height() + 'px;" />';
		});
		$(this).css("opacity","0");
	});
});