function ShowGallery(id)
{
	curi = 0;
	curg = id;
	document.getElementById('GalleryName').innerHTML = gals[id];
	ShowPicture();
}

function ShowPicture()
{
	document.getElementById('theImage').src="/gallery/image/"+imgs[curg][curi];
}

function next()
{
	curi = (++curi == imgs[curg].length)?0:curi;
	ShowPicture();
}

function prev()
{
	curi = (--curi == -1)?(imgs[curg].length-1):curi;
	ShowPicture();
}