CFrontFaqBoxInterface=Class.create({initialize:function(a){document.observe("dom:loaded",this.onReady.bind(this));Object.extend(this.config,a)},cntr:null,config:{},onReady:function(){this.cntr=$(this.config.cntr);this.bindElements();this.cntr.toggle()},bindElements:function(){this.cntr.select("span.LevelOne").each(function(a){Event.observe(a,"click",function(b,c){Event.stop(c);b.toggleClassName("LevelTopClose").toggleClassName("LevelTopOpen").next("ul").toggle()}.bind(this,a))}.bind(this));this.cntr.select("span.LevelTwo").each(function(a){Event.observe(a,
"click",function(b,c){Event.stop(c);b.toggleClassName("LevelTwoClose").toggleClassName("LevelTwoOpen").next("ul").toggle()}.bind(this,a))}.bind(this))}});
