$(function() {

	$("a[rel*=fancybox]").fancybox({
		'zoomOpacity'			: true,
		'zoomSpeedIn'			: 500,
		'zoomSpeedOut'			: 500
	});

	$("#footer").css("height", ($(window).height() - $("#container").innerHeight() - 6) + "px");
	$(window).resize(function() {
	
		$("#footer").css("height", ($(window).height() - $("#container").innerHeight() - 6) + "px");
	
	});
	
});
