$(document).ready(function(){
		$('#m2fbrp_submit').click(function(){
			$('#m2moduleform_1').submit();
			//alert('click');
			return false;
		});
		
		$('#m2moduleform_1').submit(function(){
		
			$('#status').html('Processing form... Please wait...');
			//alert('hello');

			$(this).ajaxSubmit(
			{
				target: '#status',
				success: function(res){
					if(res == 0){//send email
						$('#ajax_contact .form').html('<p class="green" style="margin-top:30px;">Thank you for your enquiry. <br />A member of our team will respond to your enquiry within 48 hours.</p>');
						//setTimeout('tb_remove()', 5000);
					}
				}
			});			
			return false;
		});
	});