// JavaScript Document
$(document).ready(function(){
	$("#ask").hide();
	$("#help").click(function(){
		$("#ask").slideToggle(800);
	});
	});
