


$(document).ready(function(){
	$('#contactform').ajaxForm({
        beforeSubmit: function(a,f,o) {
        },
        success: function(data) {
        $("#dialog").css('position', 'static');
        	$("#dialog").dialog({ 
			    modal: true, 
			    bgiframe: true,
			    overlay: { 
			        opacity: 0.5, 
			        background: "black" 
			    },
			    buttons: { 
			        "Continue to Home": function() { 
			        	$(this).dialog("close");
			            changePageWithFade('home');
			        }
			    } 
			});
        }
    });
});
