/* Handles the photo gallery */

function showImage (imgElem)
{
	var gallery = document.getElementById("gallery-feature");
	
	if (gallery) {
		if (gallery.style.display == "none" || gallery.style.display == "") {
			gallery.style.visibility = "hidden";
			gallery.style.display = "block";
			gallery.style.top = "40px";
			gallery.style.left = "60px";
			gallery.style.visibility = "visible";
		}
	}
}

function gallery_Close ()
{
	var gallery = document.getElementById("gallery-feature");
	
	if (gallery) {
		gallery.style.display = "none";
	}
}

function gallery_Previous ()
{
}

function gallery_Next ()
{
}