function changestate(obj) {
	try {
		obj.onmouseout = function() {
			obj.style.backgroundPosition = "left bottom";
		}
		obj.style.backgroundPosition = "right bottom";
	} catch(e) {  }
}

function hover(obj) {
	try {
		obj.onmouseout = function() {
			obj.style.borderColor = "#E5C8C0";
			obj.style.backgroundColor = "#FFFFFF";
		}
		if (obj.style.borderColor != "#E5C8C0") {
			obj.style.borderColor = "#6E1D02";
			obj.style.backgroundColor = "#F3E5E2";
		}
	} catch(d) {  }
}