jQuery.noConflict();
jQuery(function(){
	jQuery('#submit_contact_form').click(function(e){
		e.preventDefault();
		e.stopPropagation();
		  var serialized_form = jQuery("#contact_form").serialize();
		
		 jQuery.ajax({
		   type: "POST",
		   url: "/contactProcess.php",
		   data: serialized_form,
		   success: function(msg){
			   if(jQuery(msg).attr('id')=='error'){
				   jQuery('#submit_button_error_wrapper').html(msg);
			   }
			   else{
				   jQuery('#submit_button_wrapper').html(msg);
			   }
			 
		   }
		 });
		
		
	});

});