$(document).ready(function(){ 
   
    $("#rcall").click(function () { 
      $("#fondiv").toggle("slow"); 
  	}); 
   
}); 

$(document).ready(function() {
	$('#a').ajaxStart(function(){$(this).fadeIn('normal');});
    $('#kForm').ajaxForm({ 
        target: '#success',
		url: './lib/kformvalid.php',
        success: function() {
			$('#a').ajaxStop(function(){$(this).fadeOut('normal');});
            $('#success').fadeIn('normal'); 
        } 
    }); 
});