		$(document).ready(function() {
			//Activate FancyBox
			$("#thumb1 a").fancybox({
				'hideOnContentClick': true,
				'overlayShow':	true
			});
			
			$("#thumb2 a").fancybox({
				'hideOnContentClick': true,
				'overlayShow':	true
			});
			
			$("#thumb3 a").fancybox({
				'hideOnContentClick': true,
				'overlayShow':	true
			});
			
			$("#thumb4 a").fancybox({
				'hideOnContentClick': true,
				'overlayShow':	true
			});
			
			$("area#custom_1").fancybox({
				'itemLoadCallback': getGroupItems,
				'overlayShow':	true
			});
			
			$("a#custom_2, a#custom_3").fancybox({
				'zoomSpeedIn':	0, 
				'zoomSpeedOut':	0
			});
			
			//Some lines for this page
			$("div#donate").bind("click", function() {
				$("#donate_form").submit()
			});
			
			$("#comment_form").attr("action", "/fancy/add_comment"); $("#age").val('fancy'); //die spamers, die...
		});

		//List can contain mixed media too
		//Parameter "o" ir optional and used to override settings, example: {url: "http://www.google.com", title: false,  o: {'frameWidth': 200} }
		var imageList = [
			{url: "images/facilities/restaurant/IMG_1283.jpg", title: "TA KE Japanese Restaurant"},
			{url: "images/facilities/restaurant/IMG_1276.jpg", title: "TA KE Japanese Restaurant"},
			{url: "images/facilities/restaurant/IMG_1282.jpg", title: "TA KE Japanese Restaurant"},
			{url: "images/facilities/restaurant/IMG_1285.jpg", title: "TA KE Japanese Restaurant"},
			{url: "images/facilities/restaurant/IMG_1321.jpg", title: "TA KE Japanese Restaurant"},
		   {url: "images/facilities/restaurant/IMG_1332.jpg", title: "TA KE Japanese Restaurant"}
		];
		
		function getGroupItems(opts) {
			jQuery.each(imageList, function(i, val) {
		        opts.itemArray.push(val);
		    });
		}