function myHover(targetId){
	if (document.getElementById)
		{
		target = document.getElementById(targetId);


				target.style.backgroundColor = "#F9F9F9";

		}
}
