$(document).ready(function() {
	$("figcaption").hide();
	
	$("figure").hoverIntent(
		function() {
			$("figcaption", this).stop(true, true).animate({ height : "toggle" }, 250, "easeOutQuad");
		},
		function() {
			$("figcaption", this).stop(true, true).animate({ height : "toggle" }, 75, "easeInQuad");
		}
	);
	
	$("#marquee").fancybox({
		wrapCSS		: "fancybox-custom",
		padding		: 0,
		maxWidth	: 880,
		maxHeight	: 495,
		fitToView	: false,
		width		: "80%",
		height		: "80%",
		autoSize	: false,
		closeClick	: false,
		openEffect	: "none",
		closeEffect	: "none"
	});
	
	$("#gallery a").fancybox({
		//openEffect  : "none",
		//closeEffect : "none",
		prevEffect	: "none",
		nextEffect	: "none",
		closeBtn	: false,
		arrows		: false,
		nextClick	: true,
		helpers		: {
			title	: {
				//type : "outside"
			},
			buttons	: {}
		},
		
		afterLoad : function() {
			this.title = "Image " + (this.index + 1) + " of " + this.group.length + (this.title ? " - " + this.title : "");
		}
	});
	
	$("#video a").fancybox({
		wrapCSS		: "fancybox-custom",
		padding		: 0,
		maxWidth	: 880,
		maxHeight	: 495,
		fitToView	: false,
		width		: "80%",
		height		: "80%",
		autoSize	: false,
		closeClick	: false,
		openEffect	: "none",
		closeEffect	: "none"
	});
});

