function SendContactForm()
{
	$('#contact_submit').hide();
	$('#contact_loader').show();
	$.post('contact?send', { 
		name : $('#contact_name')[0].value,
		email : $('#contact_email')[0].value,
		phone : $('#contact_phone')[0].value,
		msg : $('#contact_msg')[0].value
	}, function(data) {
		$('#contact_form').hide();
		$('#contact_loader').hide();
		
		$('#contact_answer').html(data).show();
	});
}

function ReturnContactForm()
{
	$('#contact_answer').hide();
	$('#contact_submit').show();
	$('#contact_form').show();
}

function SendQuickContactForm()
{
	$('#contactbar_submit').hide();
	$('#contactbar_loader').show();
	$.post('contact?send', { 
		contactbar : 1,
		name : $('#contactbar_fullname')[0].value,
		email : $('#contactbar_email')[0].value,
		msg : $('#contactbar_content')[0].value
	}, function(data) {
		//$('#contactbar_form').hide();
		$('#contactbar_loader').hide();
		$('#contactbar_submit').show();
		
		alert(data);
	});
}
