function MenuOver(id){
    var x = id;
    x.style.backgroundColor = "#80aba9";
    
}
function MenuOut(id){
    var x = id;
    x.style.backgroundColor = 'transparent';
    
}

function ButtonOver(id){
    var x = id;
    x.style.backgroundColor = "#80aba9";
    
}
function ButtonOut(id){
    var x = id;
    x.style.backgroundColor = '#5f8d8b';
    
}
