<!--//--><![CDATA[//><!--

startList = function() {

	if (document.all&&document.getElementById) {

		navRoot = document.getElementById("navigation");

		for (i=0; i<navRoot.childNodes.length; i++) {

			node = navRoot.childNodes[i];

			if (node.nodeName=="LI") {

				node.onmouseover=function() {

					this.className+=" over";

				}

				node.onmouseout=function() {

					this.className=this.className.replace(" over", "");

				}

			}

		}

	}

}

window.onload=startList;



function popitup2(pic) {

	newwindow2=window.open('','name','height=450,width=370',pic);

	var tmp = newwindow2.document;

	tmp.write('<html><head><title></title>');

	tmp.write('<link rel="stylesheet" href="js.css">');

	tmp.write('</head><body>');

	tmp.write('<p><img src=uploads/images/' + pic + ' /></p>');

	tmp.write('</body></html>');

	tmp.close();

}

//--><!]]>