


function espanol() {
	$.ajax({
		   url:			'includes/espanol.html',
		   dataType:	'html',
		   beforeSend:	function(){$('#loading').html('<img src="images/defaults/loader.gif" alt="loader" />').fadeIn('slow')},
		   error:		function(){$('#loading').text('Error de carga')},
		   success:		function(response){$('#Bottom_info').html(response).fadeOut('fast').fadeIn('slow')},
		   complete:	function(){$('#loading').fadeOut('slow')}
	});
}


function english() {
	$.ajax({
		   url:			'includes/english.html',
		   dataType:	'html',
		   beforeSend:	function(){$('#loading').html('<img src="images/defaults/loader.gif" alt="loader" />').fadeIn('slow')},
		   error:		function(){$('#loading').text('Error de carga')},
		   success:		function(response){$('#Bottom_info').html(response).fadeOut('fast').fadeIn('slow')},
		   complete:	function(){$('#loading').fadeOut('slow')}
	});
}
