jQuery(document).ready(function(){
	jQuery("#orcamento_botao").click(function(){
		jQuery('#orcamento_load').show();
		jQuery.get('/ajax/orcamento',{'nome': jQuery('#orcamento_nome').val(), 'email': jQuery('#orcamento_email').val(), 'detalhes': jQuery('#orcamento_detalhes').val()}, function(j) {
			jQuery('#orcamento_load').hide();
			jQuery('#orcamento_results').html(j);
		});				
	});
});
