//<![CDATA[
		$(document).ready(function() {
			//Activate FancyBox
			$("p#test1 a").fancybox({
				'hideOnContentClick': true
			});
			
			$("p#test2 a").fancybox({
				'zoomSpeedIn':	0, 
				'zoomSpeedOut':	0, 
				'overlayShow':	true
			});
			
			$("a#custom_1").fancybox({
				'itemLoadCallback': getGroupItems
			});
			
			$("a.custom_2, a.custom_3").fancybox({
				'hideOnContentClick': true,
				'overlayShow':	true,
				'zoomSpeedIn':	10, 
				'zoomSpeedOut':	0,
				'frameWidth' : 830,
				'frameHeight' : 750
			});
			$("a.custom_4").fancybox({
				'zoomSpeedIn':	1000, 
				'zoomSpeedOut':	0,
				'overlayShow':	true,
				'frameHeight' : 600,
				'frameWidth' : 900
			});
			$("a.custom_5").fancybox({
				'zoomSpeedIn':	1000, 
				'zoomSpeedOut':	0,
				'overlayShow':	true,
				'frameHeight' : 1000,
				'frameWidth' : 1000
			});
			
			//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} }
	
		
		function getGroupItems(opts) {
			jQuery.each(imageList, function(i, val) {
		        opts.itemArray.push(val);
		    });
		}
		
		//]]>