I've come across this JavaScript code:
<script type="text/javascript">
function hideshow(which) {
if (!document.getElementById)
return
if (which.style.display=="block")
which.style.display="none"
else
which.style.display="block"
}
</script>
Is there a way to include a .slideToggle(1000);
animation into this code?