jQuery(document).ready(function(){
	
	jQuery('#contactform').submit(function(){
	
		var action = jQuery(this).attr('action');
		
		jQuery('#output').slideUp(750,function() {
		jQuery('#output').hide();
		
 		jQuery('#contactform .submit')
			.after('<span class="loader"></span>')
			.attr('disabled','disabled');
		
		jQuery.post(action, { 
			name: jQuery('#name').val(),
			email: jQuery('#email').val(),			
			subject: jQuery('#subject').val(),
			message: jQuery('#message').val(),
			verify: jQuery('#verify').val()
		},
			function(data){
				document.getElementById('output').innerHTML = data;
				jQuery('#output').slideDown('slow');
				jQuery('#contactform span.loader').fadeOut('slow',function(){jQuery(this).remove()});
				jQuery('#contactform .submit').removeAttr('disabled');
				if(data.match('success') != null) jQuery('#contactform').slideUp('slow');				
			}
		);
		
		});
		
		return false; 
	
	});
	
});
