function hover(obj){
obj.style.backgroundColor = "#7777DD";
}

function out(obj){
obj.style.backgroundColor = "#000088";
}
