// JavaScript Document
$(document).ready(function() {
  $('div#form').hide();
});

function show(){
	$('div#form').show('slow');
}