function handleShow(element, showIt, button) {
	$(showIt).slideDown();
	element.parentNode.style.display='none';
	button.style.display='block';
	return false;
}
function handleShowNoHide(element, showIt) {
	$(showIt).slideDown();
	element.parentNode.style.display='none';
	return false;
}
function handleHide(element, showIt, button) {
	$(showIt).slideUp();
	element.parentNode.style.display='none';
	button.style.display='block';
	return false;
}
