    jQuery(document).ready(function($){
    		

    	$("#loading")
		.ajaxStart(function(){
		$(this).show();
	})
		.ajaxComplete(function(){
		$(this).hide();
	});
        $('#myForm').ajaxForm(function(data) {
            if (data==1){
                $('#success').fadeIn("slow");
                $('#reply').fadeIn("slow");
                $('#vac').fadeIn("slow");
                $('#bademail').fadeOut("slow");
                $('#myForm').resetForm();
                $('#myForm').fadeOut("slow");
                $('#done').fadeOut("slow");
                $('#done1').fadeOut("slow");
                $('#done2').fadeOut("slow");
                $('#done3').fadeOut("slow");
            }
            else if (data==2) $('#badserver').fadeIn("slow");
            else if (data==3) {
                $('#bademail').fadeIn("slow");
                $('#emaillabel').css("color","red");
                $('#emailinput').focus();
            }
        });

    });