function FindOffsetLeft(obj) {
	obj = document.getElementById(obj);
	var x = obj.offsetLeft;
	while (obj = obj.offsetParent) x += obj.offsetLeft
	return x
}
function FindOffsetTop(obj) {
	obj = document.getElementById(obj);
	var x = obj.offsetTop;
	while (obj = obj.offsetParent) x += obj.offsetTop
	return x
}
function slideshow(start,last,interval) {
	var frame = start;
	var nextframe = start+1;
	Effect.Appear('img1',{duration:.5,from:0.0,to:1.0});
	setInterval(function() {
		Effect.Fade('img'+frame,{duration:.5,from:1.0,to:0.0,afterFinish:function(){
			$('img'+frame).hide();
			Effect.Appear('img'+nextframe,{duration:.5,from:0.0,to:1.0});
			frame = nextframe;
			nextframe = (frame == last) ? start : nextframe+1;
		}});
	},interval);
	return;
};

<!--//--><![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);

//--><!]]>