// --------------------------------------------------------
// 
// --------------------------------------------------------
/*
var g_homeImages = [];

g_homeImages.push({
	title: "Mona Lisa Citrus",
	artist: "Randy Slack",
	attribution: "From The Treg Bradley Collection"
});

g_homeImages.push({
	title: "Paysage avec arbres, maisons et lac",
	artist: "Maurice de Vlaminck (1876-1958)",
	attribution: "From The Oni Zazen Collection"
});

g_homeImages.push({
	title: "Wienerwald",
	artist: "A.A. Rucci",
	attribution: "From The Treg Bradley Collection"
});

g_homeImages.push({
	title: "Mountain Village in Autumn",
	artist: "Yamamoto Baiitsu (1783-1856)",
	attribution: "From The Oni Zazen Collection"
});

g_homeImages.push({
	title: "Mayor Events of 1987",
	artist: "Fausto Fernandez",
	attribution: "From The Treg Bradley Collection"
});

g_homeImages.push({
	title: "Shoki",
	artist: "Soga Sh&ocirc;haku (1730-1781)",
	attribution: "From The Oni Zazen Collection"
});

g_homeImages.push({
	title: "M.I.A. (Mexicans in America)",
	artist: "Hector Ruiz",
	attribution: "From The Treg Bradley Collection"
});

g_homeImages.push({
	title: "Rue Norvins et Sacre Coeur",
	artist: "Maurice Utrillo (1883-1955)",
	attribution: "From The Oni Zazen Collection"
});

g_homeImages.push({
	title: "Hotei",
	artist: "Fugai Ekun (1568-1664)",
	attribution: "From The Oni Zazen Collection"
});

g_homeImages.push({
	title: "Kiss",
	artist: "Shepard Fairey",
	attribution: "From The Treg Bradley Collection"
});

g_homeImages.push({
	title: "Rue de village",
	artist: "Maurice de Vlaminck (1876-1958)",
	attribution: "From The Oni Zazen Collection"
});

g_homeImages.push({
	title: "Spring Breeze",
	artist: "It&ocirc; Shinsui (1898-1972)",
	attribution: "From The Oni Zazen Collection"
});
*/

var g_homeImageCount = 9;

// --------------------------------------------------------
// 
// --------------------------------------------------------
$(function ()
{
	$("#cover-image div.item").clone().addClass("next").removeClass("active").removeAttr("index").hide().appendTo($("#cover-image"));
	
	prepareNextCoverImage();
});

function prepareNextCoverImage ()
{
	var activeElIndex = parseInt($("#cover-image div.item.active").attr("index"));
	
	// var nextItemIndex = (activeElIndex + 1) % g_homeImages.length;
	var nextItemIndex = (activeElIndex + 1) % g_homeImageCount;
	
	if (nextItemIndex == 0) nextItemIndex = g_homeImageCount;
	
	// var nextItemData = g_homeImages[nextItemIndex];
	
	var nextItemEl = $("#cover-image div.item.next");
	
	// $("img.cover-image", nextItemEl).attr("src", g_pageState.contentRoot + "/img/home/img_cover_image" + (nextItemIndex + 1) + ".jpg");
	$("img.cover-image", nextItemEl).attr("src", g_pageState.contentRoot + "/img/home/slideshow/img" + nextItemIndex + ".jpg");
	
	/*
	$("h3", nextItemEl).html(nextItemData.title);

	$("p.artist", nextItemEl).html(nextItemData.artist);

	$("p.provenance", nextItemEl).html(nextItemData.attribution);
	*/
	
	nextItemEl.attr("index", nextItemIndex);

	setTimeout(updateCoverImage, 5000);
};

function updateCoverImage ()
{
	var activeItemEl = $("#cover-image div.item.active");

	var nextItemEl = $("#cover-image div.item.next");
	
	activeItemEl.animate({
		opacity: 0
	}, {
		duration: 550,
		easing: "swing",
		complete: function ()
		{
			$(this).removeClass("active").addClass("next").hide();
		}
	});

	nextItemEl.css("opacity", 0).show().animate({
		opacity: 1
	}, {
		duration: 550,
		easing: "swing",
		complete: function ()
		{
			$(this).removeClass("next").addClass("active");
		}
	});

	prepareNextCoverImage();
};

/*
	<div id="cover-image">
		
		<div class="item">
		
			<img src="{{ MEDIA_URL }}/img/home/img_cover_image1.jpg" class="cover-image" />
		
			<h3>Mountain Stream</h3>
			
			<p class="artist">Yoshida Hiroshi (1876-1950)</p>
			
			<p class="provenance">From The Oni Zazen Collection</p>
			
		</div>
	
	</div>
*/

