// These functions provide effects for the lofi (HTML/NON-Flash) version
function toggleCategory(name) {
	var showDiv = document.getElementById(name);
	if (showDiv.style.display == 'none') {
		showDiv.style.display = 'inline';
	} else showDiv.style.display = 'none';
}
function galleryImage(img) {
	var imgPath = 'gallery/'+img;
	var img = document.getElementById('currentImage');
	img.src = imgPath;
}
function showContact() {
	hideDiv("background");
	hideDiv("content");
	var cf = document.getElementById("contactForm");
	cf.style.display = "block";
}
function showBackground() {
	hideDiv("contactForm");
	hideDiv("content");
	var cf = document.getElementById("background");
	cf.style.display = "block";
}
function hideDiv(name) {
	var bg = document.getElementById(name);
	bg.style.display = "none";
}