$(document).ready(function() {
	$("form#contact_form").ajaxForm( function( resInfo ) {
		var r = jQuery.parseJSON( resInfo );
		if ( r["send_success"] ) {
			$( "table#tbl_form" ).html( "<br />email is sending <img src=\"images/email-ajax-loader.gif\" />"  );
			$( "table#tbl_form" ).html( r["send_success"] );
		} else if ( r["error"] ) {
			alert( r["error"] );
		} else if ( r["send_false"] ) {
			$( "table#tbl_form" ).html( "<br />email is sending <img src=\"images/email-ajax-loader.gif\" />"  );
			$( "table#tbl_form" ).html( r["send_false"] );
		}
	} );
} );

