function hover(objstr) {

	obj=document.getElementById(objstr);
	obj.style.backgroundColor = "#6ba4db";
}

function hleave(objstr) {
	obj=document.getElementById(objstr);
	obj.style.backgroundColor = "";
}
