var App_Product_Tree = qs.createObject(); App_Product_Tree.prototype = { _defOptions : { collapsed: false, animated: "medium", control:"#sidetreecontrol", persist: "location" }, _options: null, initialize: function (options) { this._options = $.extend(this._defOptions, {}, options); this.build(); }, build: function () { $("#tree").treeview(this._options); $("#tree li.expandable a.selected").parents('ul.categories li').children('.hitarea').trigger('click'); } };