/*** * CheckBox Control */ var CtlCheckBox = Class.create({ initialize: function(wrap_class, bgcolor_on){ this.wrap_class = wrap_class; this.bgcolor_on = bgcolor_on; this.wrap_styles = $H({}); }, load: function(){ var h = $H({}); this.wrapElments = $$('.' + this.wrap_class); this.wrapElments.each(function(e){ var chkbox = e.down('input[type="checkbox"]'); if(chkbox){ h.set(chkbox.id