$(document).ready(function() {
	$('#help').hide();
	$('a#help-toggle').click(function() {
		$('#help').slideToggle(700);
		return false;
	});
});

