//Aqui cambia el numero de filas que quieras en las noticias (abajo de Agenda)
var filas = 3;
var portal = "VERACRUZ";

// Esperamos que se cargue el documento y llamamos a $.ajax();
$(document).ready(function()
{
	/* Se carga el panel de noticias */
	$.ajax(
	{
        type: "GET",
        url: "../noticiasuv/PrincipalNoticias.aspx",
        data: "filas=" + filas + "&imgfolder=" + portal + "&ms="+new Date().getTime(),
        success: function(datos)
		{
			$("#noticias").hide();
			$("#noticias").html(datos);
			$("#noticias").fadeIn(500);
        },
		error: function(obj1, e, obj2)
		{
			CambiaPaginaNoticias( 1 );
		}
	});		
});

function CambiaPaginaNoticias( pag )
{
	/* Se carga el panel de noticias */
	$.ajax(
	{
        type: "GET",
        url: "../noticiasuv/PrincipalNoticias.aspx",
        data: "filas=" + filas + "&imgfolder=" + portal + "&pag=" + pag + "&ms="+new Date().getTime(),
        success: function(datos)
		{
			$("#noticias").hide();
			$("#noticias").html(datos);
			$("#noticias").fadeIn(500);
        },
		error: function(obj1, e, obj2)
		{
			CambiaPaginaNoticias( 1 );
		}
	});
}

/*Función para que no salga la liga en la status bar*/
function StatusTexto( texto ){
  window.status=texto;
  return true;
}