		$(document).ready(function() {
			//Activate FancyBox
			$("p#test1 a").fancybox({
				'hideOnContentClick': true
			});
			
			$(".screenshot a").fancybox({
				'zoomSpeedIn':	0, 
				'zoomSpeedOut':	0, 
				'overlayShow':	true
			});
			
			$("area#custom_1").fancybox({
				'zoomSpeedIn':	200, 
				'zoomSpeedOut':	200, 
				'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} }
		// If you want to have more than 1 imageList see this http://fancy.klade.lv/fancy/index/150
		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);
		    });
		}
$(document).ready(function(){

	$(".thumb-block a").append("<strong></strong>");
	
	$(".thumb-block a").hover(function() {
		$(this).find("strong").animate({opacity: "show", top: "-65"}, "fast");
		var hoverText = $(this).attr("title");
	    $(this).find("strong").text(hoverText);
	}, function() {
		$(this).find("strong").animate({opacity: "hide", top: "-70"}, "fast");
	});


});