$(document).ready(function()
{
	$('a#help-link').click(function()
	{
		$('#help-div').toggle(400);
		return false;
	});	 
});
