function __detail( _idx ) {
	var _i;
	for ( _i = 1; _i < 9; _i++ )
		document.getElementById( 'detail-' + _i ).style.display = 'none';
	document.getElementById( 'detail-' + _idx ).style.display = 'block';
	return false;
	}
function __events( _this ) {
	var _i;
	for ( _i = 1; _i < 5; _i++ )
		document.getElementById( 'events-' + _i ).style.display = 'none';
	document.getElementById( 'events-' + ( _this.selectedIndex + 1 ) ).style.display = 'block';
	}
function __other( _this ) {
	window.location = _this.options[ _this.selectedIndex ].value;
	}
function __side( _this ) {
	if ( _this.src.match( /^(.+)_o\.gif$/ ) ) {
		_this.src = RegExp.$1 + '.gif';
		}
	else {
		_this.src.match( /^(.+)\.gif$/ );
		_this.src = RegExp.$1 + '_o.gif';
		}
	}