init = function() {

//	//initialize
//	var tab = "company";
//	var allowed = new Array('company', 'history');
//	var hash = location.hash.replace('#', '');
//	if (hash != "" && allowed.member(hash)) {
//		tab = hash;
//	}

	toggleData = [$('list-company'), null];
	$('list-company-trigger').addClassName('active');
//	switchTo('list-' + tab, true);

	$('list-company-trigger').observe('click', function(event) {switchTo('list-company');});
	$('list-history-trigger').observe('click', function(event) {switchTo('list-history');});
}

document.observe("dom:loaded", init);

