


function showimage(src, w, h) {
	msgWindow=window.open('', '', 'width='+w+', height='+h);
   msgWindow.document.writeln('<html><body style="margin:0;padding:0">');
	msgWindow.document.writeln('<a href="javascript:window.close();"><img border="0" src="' + src + '"></a>');
	msgWindow.document.writeln('</body></html>');
   msgWindow.document.close();
}














var jsHover = function() {
	var hEls = document.getElementById("nav").getElementsByTagName("li");

	if(window.attachEvent && navigator.userAgent.indexOf("Opera") == -1) {
		for (var i=0, len=hEls.length; i<len; i++) {
		  hEls[i].onmouseover=function() { this.className+=" jshover"; }
		  hEls[i].onmouseout=function() { this.className=this.className.replace(" jshover", ""); }
		}
	}
}


