// COPYRIGHT DISTINCTIVE WEB SERVICES AND PURE ADRENALIN IMAGES

// Toggle a list item's visibility
function toggleItemVisibility ( itemid ) { 
	// Get the element to manipulate
	var elm = document.getElementById( itemid ); 
	// If the item was found
	if ( elm != null ) {
		// Goggle the item's visibility
		if ( elm.style.display == "none" ) {
			elm.style.display = "block"; 
		}
		else {
			elm.style.display = "none"; 
		}
	}
}
