var gSlides, gSlideIndex, gNextSlideIdx, gAnimating, gSlideShow;

YAHOO.util.Event.onDOMReady(init);

function init() {
	var div, href;
	
	seriesTabInit();
	// initialize gallery
	gSlideShow = new vsGallery();
	
}

function showGallery() {
	gSlideShow.setSlides([ '/vnb100/images/galshot_leftside.jpg', '/vnb100/images/galshot_rightside.jpg' ],
						 [ '/vnb100/images/galshot_leftside_tb.png', '/vnb100/images/galshot_rightside_tb.png' ],
						 [ 'Ports on the left',  'Ports on the right' ]);
	gSlideShow.show();
}

