$(document).ready(function() {
	$().ajaxStart(function() {
		$('#loading').show();
		$('#result').hide('slow'); 
	}).ajaxStop(function() {
		$('#loading').hide();
		$('#result').fadeIn('slow');
	});
	$('#form1, #form2').submit(function() {
		var dondeSeMostrara;
		switch ($(this).attr('id')) {
			case 'form1': dondeSeMostrara = 'result';
			break;
			case 'form2': dondeSeMostrara = 'result1';
			break;
			default: dondeSeMostrara = 'result5'; 
		};
		var contenedor = ($(this).attr('id')==='form1') ? 'result' : 'result1';
		$.ajax({
			type: 'POST',
			url: $(this).attr('action'),
			data: $(this).serialize(),
			success: function(data) {
				$('#'+dondeSeMostrara).html(data);
				$('#'+dondeSeMostrara+'A').fadeOut('slow');
			}
		})
		return false; 
	}); 
})
