/********************************
jQuery Do when dom is ready!
*********************************/

$(document).ready(function()
{
	// toggle the email form
	$('a#showmsgform').click(function() {
		$('div#msgform').slideToggle(400);
		return false;
	});

});
