function pageOn(y) {
	if (document.getElementById) {
		if (!document.getElementById(y)) return;
		if (!document.getElementById(y).style) return;
		document.getElementById(y).style.color = "#FEE74D";
		document.getElementById(y).style.textDecoration = "none"; 
	} else {
		if ((document.all)) { 
			if (!document.all[y]) return;
			if (!document.all[y].style) return;
			document.all[y].style.color = "#FEE74D";
			document.all[y].style.textDecoration = "none"; 
		}
	}
}

function swapArrow(img, src) {
	if (!document.images) return;
	if (!document.images[img]) return;
	document.images[img].src = src;
}

