
 var jsTabsIcan = jsTabs.extend({
	hideAll : function() {
		this._contents.each(function(el) {
			el.setStyle('display', 'none');
		});
		this._handlers.each(function(el) {
			el.setProperty('class', '');
		});
	},
        
        showFromHandler : function (e) {
		var e = new Event(e);
                e.stop();

		this.show(e.target.getProperty('id'), true);
	},

	setOn : function (handler, content) {
		this.hideAll();
		content.setStyle('display', 'block');
		handler.setProperty('class', 'on').blur();
	}
});
