function toggleCat(obj) {
	var el = $(obj);
	el.style.display = (el.style.display != 'none' ? 'none' : '' );
}

function init() {
	toggleCat('storyCat');
	toggleCat('caseCat');
}
window.onload = init;

function ClearBox() {
	var el = $('JoinEmail');
	if (el.value == 'enter your e-mail address')
		el.value = '';
}