$(document).ready(function(){
	$('#form_remainder').hide('fast');
	
	$('#cont').click(function(){
	$("#form_remainder").fadeIn('slow');
	$("#cont").fadeOut('fast');
	});
});


