$(function(){
	$(".getOrderForm").live('click', function(){
		$("#order_dialog .process").html('&nbsp;');
		$("#order_dialog").dialog({width: '550px', height: '300'});
		$("input[type=button]").button();
	});
});

function sendOrderForm(objForm)
{
	$.ajax({
		type: 'POST',
		url:  'ajax/order_form.php',
		data: $(objForm).serialize(),
		beforeSend: function()
		{
			$(objForm).find('input[type=button]').button('disable')
			$(objForm).find('.process').html('<img src="i/loading.gif" alt="" />');
		},
		complete: function()
		{
			$(objForm).find('input[type=button]').button('enable');
			$(objForm).find('input[type=text]').val('');
			$(objForm).find('textarea').val('');
			$(objForm).find('.process').html('<img src="i/done.png" alt="" />');
		}
	});
}
