var g;

function initialize() {
	if (!isSL || !useSL)
	{
		//initialize the gallery
		var gConfig = new Object(); 
		gConfig.chooser = 'galleryChooserNav'; //html chooser nav element
		gConfig.content = 'galleryContent'; //html content element
		gConfig.contentImage = 'galleryImage'; //html content image element
		gConfig.labels = 'galleryLabels'; //html labels element
		//gConfig.next = 'galleryNext'; //html next button element
		//gConfig.previous = 'galleryPrevious'; //html previous button element	
		gConfig.showArrows = false; // show the nav arrows or not
		gConfig.state = 'galleryState'; //html rollover state indicator element
		gConfig.displayLimit = -1; //number of thumbs to display
		gConfig.thumbWidth = 92; //width of each thumb
		gConfig.catImagePath = ""; //note trailing slash
	/*	gConfig.imagePath = "http://silverlight.net/themes/silverlight/images/showcase/gallery/"; //note trailing slash    */
		gConfig.imagePath = "/india/web/js/"; //note trailing slash   
		gConfig.gItems = myjsItems;	
		
		g = new gallery(gConfig);
		g.init();
	}
}

function openSeeIt() {
	openWindow("showcasepopup.aspx", "Download", 282, 171);
}
