$(document).ready(function() {
    $('#contact-form').ajaxForm(function(response_json){
        //response = eval('(' + response_json + ')');
        if(response_json.success){
            document.location.href = response_json.url;
        }else{
            $('#contact-form fieldset').replaceWith(response_json.html);
        }
    });
});

