jQuery.noConflict();
var $j = jQuery;
jQuery(document).ready(function() {jQuery("a.gallery").fancybox({'zoomSpeedIn': 300, 'zoomSpeedOut': 300, 'overlayOpacity': 0.6});});

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

sfHover = function() {
	var sfEls = document.getElementById("nav").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);

//--><!]]>

function checkAll(){
	for (var i=0;i<document.forms[0].elements.length;i++)
	{
		var e=document.forms[0].elements[i];
		if ((e.name != 'allbox') && (e.type=='checkbox'))
		{
			e.checked=document.forms[0].allbox.checked;
		}
	}
}
// JavaScript Document

startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("nav");
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 openInfoWindow (path,window_name,window_width,window_height,toolbar_value,location_value,scrollbar_value,resizeable_value)

{var hWnd = window.open(path,window_name,"width=" + window_width + ",height="+window_height+",toolbar="+toolbar_value+",location="+location_value+",resizable="+resizeable_value+",scrollbars="+scrollbar_value);

hWnd.focus();

if ((document.window != null) && (!hWnd.opener))

hWnd.opener = document.window;}