function slide(layer,which) {
	layer = layer.id;
	if (which=="up") {
		document.getElementById(layer).style.backgroundPosition = "0px -40px";
	} else if (which=="dn") {
		document.getElementById(layer).style.backgroundPosition = "0px 0px";
	}
}
