function hshow(myElem){
	var showit = "http://www.all-final.com/images/curushow2.gif";
	var hideit = "http://www.all-final.com/images/curuhide.gif";
	if (myElem.nextSibling.style.display == "none"){
		myElem.firstChild.src = hideit;
		myElem.nextSibling.style.display = "";
	}else{
		myElem.firstChild.src = showit;
		myElem.nextSibling.style.display = "none";
	}
}

function pointin() {
	document.body.style.cursor = "hand";
}
function pointout() {
	document.body.style.cursor = "auto";
}

