function Hida() {}

Hida.load = function() {
	$(".fancybox")
	.fancybox({
		'zoomOpacity' : true,
		'overlayShow' : false,
		'zoomSpeedIn' : 500,
		'zoomSpeedOut' : 500
	});
	
	// Toggle credits
	$("#toggleCredits").click(function() {
		var tc = $(this);
		var ul = $("#footer #credits"); 
		ul.css("top", (tc.offset().top-ul.height()-12)+"px");
		ul.css("left", (tc.offset().left-ul.width()+25)+"px");
		
		if (ul.is(":visible")) {
			ul.fadeOut();
		} else {
			ul.fadeIn();
		}
	});
}

Hida.home = function() {
	$("#bg").fadeIn(5000);
}
