// JavaScript Document
function mouseOver(obj){
    obj.style.backgroundColor = "#ffffcc";
}
function mouseOut(obj){
    obj.style.backgroundColor = "#f6f6f6";
}

