RuotaAnnunci=Class.create();
RuotaAnnunci.prototype={

    initialize:function(element,url)
    {
        try
        {
           new Ajax.PeriodicalUpdater(element, url, {
           method: 'get', frequency:30
           });

        }
        catch(err){}
        
      
}
};
