﻿/// <reference path="jquery-1.4.4.js" />

setInterval("_NoticiasResumidas();", 1000 * 6);
function _NoticiasResumidas() {
    $.ajax({
        type: "POST",
        url: "http://www.dekalb.com.br/Service.asmx/_requestNoticias",
        contentType: "application/json; charset=utf-8",
        dataType: "json",
        success: function (retorno) {
            var tempo = retorno.d;
            $('#Titulo').html(tempo['Titulo']);            
        }
    });
    }
