       /**
    	* Decorate all tables having e-list class
    	* TODO: add 'adminlist' class to all list core tables, allow theme decorate.
    	*/
        e107.runOnLoad( function(event) {
        	var element = event.memo['element'] ? $(event.memo.element) : $$('body')[0];
			
			   
			$$('div.admintabs').each(function(element) {
				//show tab navaigation
				element.select('ul.e-tabs').each( function(el){
					el.show();
					el.removeClassName('e-hideme'); //prevent hideme re-register (e.g. ajax load)
				});
				
				//init tabs
            	new e107Widgets.Tabs(element, {
					tabsClassName: 'e-tabs',
					bookmarkFix: false,
					historyNavigation: false,
					pageOverlay: false,
					elementOverlay: true,
					ajaxCache: true
				});
            					
				//hide legends if any
            	//element.select('legend').invoke('hide');
            });
        }, document, true);
