function sendEnquiry() {
	
	enq = jQuery('#enquiry').val();
	if(enq.length > 0) {
		jQuery('#enquiry').removeClass('ok').addClass('waiting');
		
		propertyid = jQuery('#propertyid').val();
		
		myurl = window.location.href;
		
		jQuery.getJSON(myurl, {namespace:"_beenquiry", call:"_ajax", action:'_makeenquiry', enquiry: enq, propertyid: propertyid, nocache: new Date().getTime()},
						function(data){
							if(data.errorcode != '200') {
								alert(data.message);
							} else {
								jQuery('#enquiry').removeClass('waiting').addClass('ok');
							}
						});
	}
	return false;
}

function enquiryReady() {
	jQuery('#enquiryform').submit(sendEnquiry);

}


jQuery(document).ready(enquiryReady);