<!--
// show/hide the nested ULs 
function TJK_toggleText(){ // v1.2 Copyright (c) TJKDesign - Thierry Koblentz
var e = document.getElementById("iconBox");
var LI = e.getElementsByTagName("li");
var zHelp = document.getElementById("Help");
var zLI = LI.length;
	for(var k=0;k<zLI;k++){
		if(LI[k].className==""){
			LI[k].onclick=swapText;
		}
	}
	zHelp.className="showDIV";
}				
function swapText(){ // v1.2 Copyright (c) TJKDesign - Thierry Koblentz
var e = document.getElementById("iconBox");
var zHelp = document.getElementById("Help");
var LI = e.getElementsByTagName("li");
var zLI= LI.length;
	if(this.className=="showDIV"){
//		this.className="";
		return
	}
	for(var k=0;k<zLI;k++){
		if(LI[k].className=="showDIV"){
			LI[k].className="hideDIV";
		}
	}
	if(this.className=="" || this.className=="hideDIV"){
		this.className="showDIV";
		zHelp.className="hideDIV";
	}
	if(this.className=="hideDIV"){
		this.className="showDIV";
	}
}
//if (document.getElementById) document.write('<style type="text/css" media="screen">@import "http://i.slimg.com/seatguru/css/TJK_iconbox.css";</style>');
// From Simon Willison's Weblog
// http://simon.incutio.com/archive/2004/05/26/addLoadEvent
function addLoadEvent(func) {var oldonload = window.onload;if(typeof window.onload != 'function'){window.onload = func;}else{window.onload = function(){oldonload();func();}}}
addLoadEvent(function(){if(document.getElementById)TJK_toggleText();TJK_toggleR()});
//-->
