function getMouseoutBg(obj, status){
    if (status%2==0)
        obj.style.backgroundColor='#f0f8fb';
    else
        obj.style.backgroundColor='#e6f0f5';
    //     obj.style.backgroundColor='#FFFFFF';
}

function getMouseoverBg(obj){
        //obj.style.backgroundColor='#9cd332';
        obj.style.backgroundColor='#bedff2';
}


