$(document).ready(function(){
		$('#order_form').hide();
		$('#show_form').click(function(){
			$('#order_form').toggle('10');
			$('#show_form').toggle('10');
		});
		
		$('#dont_order').click(function(){
			$('#show_form').toggle('10');
			$('#order_form').toggle('10');
		});
		
		$('#submit').click(function(){
			$('#show_form').html("wysłane");
		});
});
