// This handles the shout box
window.onload = function()
{ /* we have to wait until the DOM has loaded before we can hook into it. */
	var login = document.getElementById('show_shout');
		login.onclick = function ()
		{ /* lets do our thing when a user clicks on the Login title */
			var target = document.getElementById('shout');
			target.style.display = target.style.display == 'none' ? 'block':'none';
		};
};