// JavaScript Document

<!--

var isBagsVisible = "none";
var isMousepadsVisible = "none";
var isTshirtsVisible = "none";

// open bags pulldown if invisible, close if visible:
function toggleBagsOutlets(whichCategory) {
	if (isBagsVisible=="none") {
		isBagsVisible = "list-item";
		document.getElementById(whichCategory).style.display = isBagsVisible;
	} else {
		isBagsVisible = "none";
		document.getElementById(whichCategory).style.display = isBagsVisible;
	}
}

// open mousepads pulldown if invisible, close if visible:
function toggleMousepadsOutlets(whichCategory) {
	if (isMousepadsVisible=="none") {
		isMousepadsVisible = "list-item";
		document.getElementById(whichCategory).style.display = isMousepadsVisible;
	} else {
		isMousepadsVisible = "none";
		document.getElementById(whichCategory).style.display = isMousepadsVisible;
	}
}

// open tshirts pulldown if invisible, close if visible:
function toggleTshirtsOutlets(whichCategory) {
	if (isTshirtsVisible=="none") {
		isTshirtsVisible = "list-item";
		document.getElementById(whichCategory).style.display = isTshirtsVisible;
	} else {
		isTshirtsVisible = "none";
		document.getElementById(whichCategory).style.display = isTshirtsVisible;
	}
}

/* NOTE:
I could have wirtten this script much more simply, but I wrote it the way
it is now because there was a glitch I had to iron out.
*/

-->