// default

$(function(){
	
	$('.hide').hide();
	
	// contact
	$('#userForm').ajaxForm({
        beforeSubmit:  	function(formData, form, options){
							$('#error').slideUp();
							return true;
						}, 
        success:       	function(data, status, xhr, form){
							if(data.success == true){
								$('#userForm').slideUp('slow', function(){ $('#thankYou').slideDown(); });
							} else {
								$('#error').slideDown();
							}
						},
		url:			'/ajax.php',
		type:			'post',
		dataType:		'json'
	});
	
});