$(document).ready(function() {
			//Activate FancyBox
		
			$("div.photo_box ul li a").fancybox({
				'hideOnContentClick': true
			});
			
			 $("div.photo_box").scrollable({
	                next: 'a.btn_right',
	                prev: 'a.btn_left',
	                size: 4,
	                // items are auto-scrolled in 2 secnod interval 
	                interval: 5000,

	                // when last item is encountered go back to first item 
	                loop: true,

	                // make animation a little slower than the default 
	                speed: 600
	         });
			//Some lines for this page
			
			$("#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);
		    });
		}
