function llamarPagina1()
{
	$.ajax
	(
		{
			type	: 'GET',
			url 	: 'ingles/activa.php',
			success	: function(msg)
			{
				$("#cuerpo").html(msg);
			}
		}
	);
};