// prepare the form when the DOM is ready 
$(document).ready(function() { 
    var options = { 
        target:        '#message',
        success:       showResponse,
        clearForm: 	   true,
        resetForm:     true
    }; 
 
    $('#contact').submit(function() { 
        $(this).ajaxSubmit(options); 
 
        return false; 
    }); 
});
 
function showResponse(responseText, statusText)  { 

} 