var PerguntasFrequentes=Class.create(ContentList.prototype,
{
initProperties:function(template,element,externalInterface,data){
this.sup(template,element,externalInterface,data,"initProperties");
this.type="PerguntasFrequentes";
this.hasMany=PerguntaFrequente;
},
montar:function(){
this.sup("montar");
actions.accordion();
}
});
var PerguntaFrequente=Class.create(ContentControler.prototype,
{
init:function(template,element,data){
this.sup(template,element,data,"init");
this.type="PerguntaFrequente";
}
});