// JavaScript Document
function hover(id){
document.getElementById(id).style.background = "#f7faf0";
}
function out(id){
document.getElementById(id).style.background = "#fff";
}