# Checklist1 Styles var Checklist1Styles = { new : func() { var obj = { parents : [ Checklist1Styles ]}; obj.Styles = {}; obj.loadStyles(); return obj; }, getStyle : func(type) { return me.Styles[type]; }, setStyle : func(type, name, value) { me.Styles[type][name] = value; }, loadStyles : func() { me. clearStyles(); me.Styles.XXX = {}; }, clearStyles : func() { me.Styles = {}; }, };