$(document).ready(function(){

	$("a#myfancy-tan").fancybox({
		'itemLoadCallback': getGroupItemsTAN						
	});
	$("a#myfancy-sc").fancybox({
		'itemLoadCallback': getGroupItemsSC
	});
	$("a#myfancy-sv").fancybox({
		'itemLoadCallback': getGroupItemsSV
	});
	$("a#myfancy-mm").fancybox({
		'itemLoadCallback': getGroupItemsMM
	});
	$("a#myfancy-sd").fancybox({
		'itemLoadCallback': getGroupItemsSD
	});

	//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 imageListTAN = [
		{url: "http://blog.iloveflycasual.com/wp-content/themes/flycasual/images/tango-1.jpg", title: "<a class='fancy-box-link' href='http://www.gimmetango.com'>www.gimmetango.com (1 of 2)</a>"},
		{url: "http://blog.iloveflycasual.com/wp-content/themes/flycasual/images/tango-2.jpg", title: "<a class='fancy-box-link' href='http://www.gimmetango.com'>www.gimmetango.com (2 of 2)</a>"}
	];
	var imageListSC = [
		{url: "http://blog.iloveflycasual.com/wp-content/themes/flycasual/images/sagar-chowdhury.jpg", title: "<a class='fancy-box-link' href='http://www.sagarchowdhury.com'>www.sagarchowdhury.com (1 of 2)</a>"},
		{url: "http://blog.iloveflycasual.com/wp-content/themes/flycasual/images/sagar-chowdhury-2.jpg", title: "<a class='fancy-box-link' href='http://www.sagarchowdhury.com'>www.sagarchowdhury.com (2 of 2)</a>"}
	];
	var imageListSV = [
		{url: "http://blog.iloveflycasual.com/wp-content/themes/flycasual/images/salon-v-1.jpg", title: "<a class='fancy-box-link' href='http://www.salonvchicago.com'>www.salonvchicago.com (1 of 3)</a>"},
		{url: "http://blog.iloveflycasual.com/wp-content/themes/flycasual/images/salon-v-2.jpg", title: "<a class='fancy-box-link' href='http://www.salonvchicago.com'>www.salonvchicago.com (2 of 3)</a>"},
		{url: "http://blog.iloveflycasual.com/wp-content/themes/flycasual/images/salon-v-3.jpg", title: "<a class='fancy-box-link' href='http://www.salonvchicago.com'>www.salonvchicago.com (3 of 3)</a>"}		
	];
	var imageListMM = [
		{url: "http://blog.iloveflycasual.com/wp-content/themes/flycasual/images/marys-market-1.jpg", title: "<a class='fancy-box-link' href='http://www.marysmarket.com'>www.marysmarket.com (1 of 2)</a>"},
		{url: "http://blog.iloveflycasual.com/wp-content/themes/flycasual/images/marys-market-2.jpg", title: "<a class='fancy-box-link' href='http://www.marysmarket.com'>www.marysmarket.com (2 of 2)</a>"}
	];
	var imageListSD = [
		{url: "http://blog.iloveflycasual.com/wp-content/themes/flycasual/images/seamless-1.jpg", title: "<a class='fancy-box-link' href='http://www.thisisseamless.com'>www.thisisseamless.com (1 of 3)</a>"},
		{url: "http://blog.iloveflycasual.com/wp-content/themes/flycasual/images/seamless-2.jpg", title: "<a class='fancy-box-link' href='http://www.thisisseamless.com'>www.thisisseamless.com (2 of 2)</a>"},
		{url: "http://blog.iloveflycasual.com/wp-content/themes/flycasual/images/seamless-3.jpg", title: "<a class='fancy-box-link' href='http://www.thisisseamless.com'>www.thisisseamless.com (3 of 3)</a>"}
	];
	
	function getGroupItemsTAN(opts) {
			jQuery.each(imageListTAN, function(i, val) {
			opts.itemArray.push(val);
		});
	}
	
	function getGroupItemsSC(opts) {
			jQuery.each(imageListSC, function(i, val) {
			opts.itemArray.push(val);
		});
	}
	
	function getGroupItemsSV(opts) {
			jQuery.each(imageListSV, function(i, val) {
			opts.itemArray.push(val);
		});
	}	
	function getGroupItemsMM(opts) {
			jQuery.each(imageListMM, function(i, val) {
			opts.itemArray.push(val);
		});
	}
	function getGroupItemsSD(opts) {
			jQuery.each(imageListSD, function(i, val) {
			opts.itemArray.push(val);
		});
	}
});