	var mouseOvers = new Array();
	var mouseOuts = new Array();

	function MouseOvers (section) {
		if (document.getElementById(section)) { 
			var nav = document.getElementById(section);
			var imgs = nav.getElementsByTagName("img");


		for (i = 0; i < imgs.length; i++) {

			if (imgs[i].src.search(/_on.gif$/) == -1) { 
			imgs[i].onmouseover = function () {
				this.src = mouseOvers[this.number + section].src;
			}
			imgs[i].onmouseout = function () {
				this.src = mouseOuts[this.number + section].src;
			}
		}
			var suffix = imgs[i].src.substring(imgs[i].src.lastIndexOf('.'));
			mouseOuts[i + section] = new Image();
			mouseOuts[i + section].src = imgs[i].src;
			mouseOvers[i + section] = new Image();
			mouseOvers[i + section].src = imgs[i].src.substring(0, imgs[i].src.lastIndexOf('.')) + "_on" + suffix;
			imgs[i].number = i;
		}
		}
	}



function pageup(e) {
		UAGENT = navigator.userAgent.toUpperCase();
		if (UAGENT.indexOf("MSIE") >=0) { posi = event.y; }
		else { posi = e.pageY; }
		moveObje(posi);
}
function moveObje(position) {
		move = position / 15;
		point = parseInt(position - move);
		scrollTo(0,point);
		if (point > 0) { setTimeout("moveObje(point)",15); }
}



	var lastFocus = 'img_safewrap_help';
	function OnFocus () {
		var nav = document.getElementById("contentrightlong");
		var imgs = nav.getElementsByTagName("img");

		for (i = 0; i < imgs.length; i++) {
			if (document.getElementById(imgs[i].id + '_help')) {

				imgs[i].onmouseover = function () {
					if (lastFocus.length) {
						document.getElementById(lastFocus).style.display = 'none';
					}
					document.getElementById(this.id + '_help').style.display = 'block';
					lastFocus = this.id + '_help';
				}

				imgs[i].onblur = function () {
					document.getElementById(this.id + '_help').style.display = 'none';
				}
			}
		}
	}
