YAHOO.namespace("VIT");

YAHOO.VIT.Gallery = {
	/** Local Events **/
	Local: {
		name: "Local Events", folder: "local",
		list: [
			{ "image": "iafa1_mar10", "caption": "Governor Jan Brewer attends India Festival 2010 at Indo-American Community Center.", "name" : "Photograph: Courtesy of IAFA." },
			{ "image": "hta1_mar10", "caption": "Devotees enjoying the darshan program at the Hindu Temple for Maha Shivratri.", "name" : "Photograph: Courtesy of Hindu Temple of Arizona." },
			{ "image": "hta2_mar10", "caption": "Maha Shivratri celebration at the Hindu Temple of Arizona.", "name" : "Photograph: Courtesy of Hindu Temple of Arizona." },
			{ "image": "osg_mar10", "caption": "The University of Arizona Om Shanti dance troupe placed second at a Bollywood competition in February.", "name" : "" },
			{ "image": "iafa2_mar10", "caption": "Attorney General of Arizona, Terry Goddard, visiting the Rajasthani Association food booth at the India Festival 2010 at the Indo-American Community Center.", "name" : "Photograph: Courtesy of IAFA." },
			{ "image": "iafa3_mar10", "caption": "Devotees at Ekta Mandirs Pran Pratisha 2nd Anniversary.", "name" : "Photograph: Courtesy of IAFA." },
			{ "image": "iafa4_mar10", "caption": "Governor Jan Brewer of Arizona posing with attendees at the India Festival 2010 at Indo-American Community Center. ", "name" : "Photograph: Courtesy of IAFA." },
			{ "image": "sfd_feb10", "caption": "Sambar flowing into Carriers", "name": "Photograph: Courtesy of Akshaya Patra Foundation, Phoenix Chapter" },
			{ "image": "ap_feb10", "caption": "The Phoenix chapter of the Akshaya Patra Foundation was kicked off on Saturday, January 9, 2010", "name": "Photograph: Courtesy of Akshaya Patra Foundation, Phoenix Chapter" },
			{ "image": "rm_feb10", "caption": "Roti Machine", "name": "Photograph: Courtesy of Akshaya Patra Foundation, Phoenix Chapter" },
			{ "image": "kd_jan10", "caption": "Kriti Dance performed a contemporary Bollywood dance production during half-time entertainment for the Phoenix Suns game on December 5th, 2009.",  "name": "Photograph: Courtesy of Kriti Dance" },
			{ "image": "kd2_jan10", "caption": "Bird&#39;s eye view of the entire Kriti Dance group on court: Colorful and lively!", "name": "Photograph: Courtesy of Kriti Dance" },
			{ "image": "cw_jan10", "caption": "6th Annual Charity Walk held on Sunday, December 6, 2009 at the Kiwanis Park in Tempe", "name": "Photograph: Courtesy of IAF" },
			{ "image": "cw2_jan10", "caption": "6th Annual Charity Walk held on Sunday, December 6, 2009 at the Kiwanis Park in Tempe", "name": "Photograph: Courtesy of IAF" },
			{ "image": "sap_jan10", "caption": "United Telugu Foundation organized an event in support of Samaikhya Andhra Pradesh on Dec 20th 2009; about 250 Telugu NRIs have assembled at the Indo-American Center",  "name": "Photograph: Courtesy of United Telegu Foundation" }
		]
	},
	
	/** Artwork by Arizona Artists **/
	Artwork: {
		name: "Artwork by Arizona Artists", folder: "artwork",
		list: [
			{ "image": "firestorm", "caption": "Firestorm, 20x28in, Mixed media on canvas", "name": "Artist: Tulika Ladsariya" },
			{ "image": "untitled", "caption": "Untitled, 18x24in, Mixed media on canvas", "name": "Artist: Tulika Ladsariya" },
			{ "image": "vinesofmor", "caption": "Vines of Mor, 3x3ft, acrylic on canvas", "name": "Artist: JDG" },
			{ "image": "ommor", "caption": "Om Mor, 10x10in, acrylic on canvas", "name": "Artist: JDG" }
		]
	},
	
	/** Novice Photography **/
	Novice: {
		name: "Novice Photography", folder: "novice",
		list: [
			{ "image": "dl_jdg", "caption": "Dual Light", "name" : "Photographer: JDG" },
			{ "image": "hboc_ag", "caption": "Yaquina Bay Bridge, Newport, Oregon", "name" : "Photographer: Achal Gandhi" },
			{ "image": "oc_jdg", "caption": "Cresting Oregon Coast", "name" : "Photographer: JDG" },
			{ "image": "sg_jdg", "caption": "Seattle&#39;s Grey", "name" : "Photographer: JDG" },
			{ "image": "svtf_jdg", "caption": "Skagit Valley Tulip Festival 2009", "name" : "Photographer: JDG" },
			{ "image": "ba_pkv", "caption": "Beautiful Arizona", "name" : "Photographer: Pankaj Kumar Verma" },
			{ "image": "datp_pkv", "caption": "Day at the Park", "name" : "Photographer: Pankaj Kumar Verma" },
			{ "image": "ftm_pkv", "caption": "Framing the Moment", "name" : "Photographer: Pankaj Kumar Verma" },
			{ "image": "tvfml_pkv", "caption": "Tucson&#39;s view from Mt Lemmon", "name" : "Photographer: Pankaj Kumar Verma" },
			{ "image": "lb_map", "caption" : "Love blossoms", "name" : "Photographer: Mital Amit Patel" },
			{ "image": "i_map", "caption" : "Innocence", "name" : "Photographer: Mital Amit Patel" },
			{ "image": "ah_map", "caption" : "Amazing heights", "name" : "Photographer: Mital Amit Patel" },
			{ "image": "csb_pp", "caption" : "Conch shell, Bahamas December 2009", "name" : "Photographer: Poonam Patel" },
			{ "image": "gti_pp", "caption" : "Grand Turk Island, Turk & Caicos December 2009", "name" : "Photographer: Poonam Patel" },
			{ "image": "s_pp", "caption" : "Sydney, January 2010", "name" : "Photographer: Poonam Patel" }
		]
	},
	
	load: function(category) {
		var list = category.list;
		
		var html = "";
		html += "<ol id='carousel'>";
		for (var i = 0, j = list.length; i < j; i++) {
			html += "<li>";
			html += "<a href='" + category.folder + "/" + list[i].image + ".jpg" + "' rel='lightbox[" + category.folder +"]' title='" + list[i].caption + "<br/>" + list[i].name +"'>";
			html +=	"<img src='" + category.folder + "/" + list[i].image + "_thumb.jpg" + "' alt='' width='100' height='100' />";
			html += "</a>";
			html += "</li>";
		}
		html += "</ol>";
		YAHOO.util.Dom.get(category.folder).innerHTML = html;
		
		var carousel = new YAHOO.widget.Carousel(category.folder, {
			animation: { speed: 1.0 }, // set-up animation
			numVisible: [6,1] // specify number of columns and number of rows
		});
		carousel.render(); // get ready for rendering the widget
		carousel.show(); // display the widget
	},
	
	loadHome: function() {
		var list = null;
		var html = "";
		html += "<ol id='carousel'>";
		
		list = YAHOO.VIT.Gallery.Local.list;
		for (var i = 0, j = list.length; i < j; i++) {
			html += "<li>";
			html += "<a href='gallery/'>";
			html +=	"<img src='gallery/local/" + list[i].image + "_thumb.jpg" + "' alt='' width='100' height='100' />";
			html += "</a>";
			html += "</li>";
		}
		
		list = YAHOO.VIT.Gallery.Artwork.list;
		for (var i = 0, j = list.length; i < j; i++) {
			html += "<li>";
			html += "<a href='gallery/'>";
			html +=	"<img src='gallery/artwork/" + list[i].image + "_thumb.jpg" + "' alt='' width='100' height='100' />";
			html += "</a>";
			html += "</li>";
		}
		
		list = YAHOO.VIT.Gallery.Novice.list;
		for (var i = 0, j = list.length; i < j; i++) {
			html += "<li>";
			html += "<a href='gallery/'>";
			html +=	"<img src='gallery/novice/" + list[i].image + "_thumb.jpg" + "' alt='' width='100' height='100' />";
			html += "</a>";
			html += "</li>";
		}
		
		html += "</ol>";
		YAHOO.util.Dom.get("gallery-home").innerHTML = html;
		
		var carousel = new YAHOO.widget.Carousel("gallery-home", {
			autoPlayInterval: 3000,
			numVisible: [2,1],
			isCircular: true
		});
		carousel.render(); // get ready for rendering the widget
		carousel.show(); // display the widget
		carousel.startAutoPlay();
	}
}

