jQuery(document).ready(function() {
					   
	function hideForm () {
		jQuery('#form-background').fadeOut(500);
	}
	function showForm () {
		jQuery('#form-background').fadeIn(500);
	}
	
	jQuery('#close').click(hideForm);
	
	jQuery('.invoke-form').click(showForm);
	
});
