function hideShow(hideid, showid)
{
	var hide = document.getElementById(hideid);
	var show = document.getElementById(showid);
	
	$(hide).hide('normal');
	$(show).show('normal');
}

function toggler(divid)
{
	var thediv = document.getElementById(divid);
	
	$(thediv).slideToggle('normal');
}