$(document).ready(function() {
		$("td#test1 a").fancybox({
			'hideOnContentClick': true,
			'itemLoadCallback': getGroupItemsDisplay
		});
		$("td#test2 a").fancybox({
			'hideOnContentClick': true,
			'itemLoadCallback': getGroupItemsSpring
		});
		$("td#test3 a").fancybox({
			'hideOnContentClick': true,
			'itemLoadCallback': getGroupItemsWire
		});
		$("a.gallery").fancybox({
		'zoomSpeedIn':		300, 
		'zoomSpeedOut':	300, 
		'overlayShow':		true
	});
	});
	
	var imageListDisplay = [
			{url: "../images/gallery/display/1.jpg", title: "Use the left/right arrows or keys to navigate. ESC to close"},
			{url: "../images/gallery/display/2.jpg", title: "Use the left/right arrows or keys to navigate. ESC to close"},
			{url: "../images/gallery/display/3.jpg", title: "Use the left/right arrows or keys to navigate. ESC to close"},
			{url: "../images/gallery/display/4.jpg", title: "Use the left/right arrows or keys to navigate. ESC to close"},
			{url: "../images/gallery/display/5.jpg", title: "Use the left/right arrows or keys to navigate. ESC to close"},
			{url: "../images/gallery/display/6.jpg", title: "Use the left/right arrows or keys to navigate. ESC to close"},
			{url: "../images/gallery/display/7.jpg", title: "Use the left/right arrows or keys to navigate. ESC to close"},
			{url: "../images/gallery/display/8.jpg", title: "Use the left/right arrows or keys to navigate. ESC to close"},
			{url: "../images/gallery/display/9.jpg", title: "Use the left/right arrows or keys to navigate. ESC to close"}
		];
		
	var imageListSpring = [
			{url: "../images/gallery/springs/1.jpg", title: "Use the left/right arrows or keys to navigate. ESC to close"},
			{url: "../images/gallery/springs/2.jpg", title: "Use the left/right arrows or keys to navigate. ESC to close"},
			{url: "../images/gallery/springs/3.jpg", title: "Use the left/right arrows or keys to navigate. ESC to close"},
			{url: "../images/gallery/springs/4.jpg", title: "Use the left/right arrows or keys to navigate. ESC to close"},
			{url: "../images/gallery/springs/5.jpg", title: "Use the left/right arrows or keys to navigate. ESC to close"},
			{url: "../images/gallery/springs/6.jpg", title: "Use the left/right arrows or keys to navigate. ESC to close"},
			{url: "../images/gallery/springs/7.jpg", title: "Use the left/right arrows or keys to navigate. ESC to close"},
			{url: "../images/gallery/springs/8.jpg", title: "Use the left/right arrows or keys to navigate. ESC to close"},
			{url: "../images/gallery/springs/9.jpg", title: "Use the left/right arrows or keys to navigate. ESC to close"}
		];
		
	var imageListWire = [
			{url: "../images/gallery/wire/1.jpg", title: "Use the left/right arrows or keys to navigate. ESC to close"},
			{url: "../images/gallery/wire/2.jpg", title: "Use the left/right arrows or keys to navigate. ESC to close"}
		];
		
		
	function getGroupItemsDisplay(opts) {
		jQuery.each(imageListDisplay, function(i, val) {
	        opts.itemArray.push(val);
	    });
	}
	
	function getGroupItemsSpring(opts) {
		jQuery.each(imageListSpring, function(i, val) {
	        opts.itemArray.push(val);
	    });
	}
	
	function getGroupItemsWire(opts) {
		jQuery.each(imageListWire, function(i, val) {
	        opts.itemArray.push(val);
	    });
	}