/*startList = function() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("gallery");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="IMG") {
				node.onmouseover=function() {
				this.className="cb_thumb_over";
		  	}
		  	node.onmouseout=function() {
		  		this.className="cb_thumb";
		   	}
		   }
		  }
	 }
}*/

function startup() {
	initLightbox();
	//startList();
}