function hoverbg(x){
if(x==1){
document.getElementById(1).style.backgroundColor="#E27517";
document.getElementById("s2").style.backgroundColor="#E27517";
}
if(x==2){
document.getElementById(2).style.backgroundColor="#E27517";
document.getElementById("s2").style.backgroundColor="#E27517";
document.getElementById("s3").style.backgroundColor="#E27517";
}
if(x==3){
document.getElementById(3).style.backgroundColor="#E27517";
document.getElementById("s3").style.backgroundColor="#E27517";
document.getElementById("s4").style.backgroundColor="#E27517";
}
if(x==4){
document.getElementById(4).style.backgroundColor="#E27517";
document.getElementById("s4").style.backgroundColor="#E27517";
document.getElementById("s5").style.backgroundColor="#E27517";
}
if(x==5){
document.getElementById(5).style.backgroundColor="#E27517";
document.getElementById("s5").style.backgroundColor="#E27517";
document.getElementById("s6").style.backgroundColor="#E27517";
}
if(x==6){
document.getElementById(6).style.backgroundColor="#E27517";
document.getElementById("s6").style.backgroundColor="#E27517";
}
}
function nonebg(x){
if(x==1){
document.getElementById(1).style.backgroundColor="";
document.getElementById("s2").style.backgroundColor="";
}
if(x==2){
document.getElementById(2).style.backgroundColor="";
document.getElementById("s2").style.backgroundColor="";
document.getElementById("s3").style.backgroundColor="";
}
if(x==3){
document.getElementById(3).style.backgroundColor="";
document.getElementById("s3").style.backgroundColor="";
document.getElementById("s4").style.backgroundColor="";
}
if(x==4){
document.getElementById(4).style.backgroundColor="";
document.getElementById("s4").style.backgroundColor="";
document.getElementById("s5").style.backgroundColor="";
}
if(x==5){
document.getElementById(5).style.backgroundColor="";
document.getElementById("s5").style.backgroundColor="";
document.getElementById("s6").style.backgroundColor="";
}
if(x==6){
document.getElementById(6).style.backgroundColor="";
document.getElementById("s6").style.backgroundColor="";
}
}