
var lower = 0
var upper = 0


function checkDisplayStatus() {

var maint = document.getElementById('maintenance');
var desg = document.getElementById('design');
var other = document.getElementById('other');

var maint_p = document.getElementById('maint_p');
var desg_p = document.getElementById('desg_p');
var other_p = document.getElementById('other_p');

var colorOn = '#72bf2c';
var colorOff = '#dbf04f';

if(document.free_quote.service_type[0].checked) {
    desg.style.display='block';
    desg_p.style.fontWeight='bold';
    desg_p.style.backgroundColor=colorOn;
    maint.style.display='none';
    maint_p.style.fontWeight='normal';
    maint_p.style.backgroundColor=colorOff;
    other.style.display='none';
    other_p.style.fontWeight='normal';
    other_p.style.backgroundColor=colorOff;
}

else if(document.free_quote.service_type[1].checked) {
    desg.style.display='none';
    desg_p.style.fontWeight='normal';
    desg_p.style.backgroundColor=colorOff;
    maint.style.display='block';
    maint_p.style.fontWeight='bold';
    maint_p.style.backgroundColor=colorOn;
    other.style.display='none';
    other_p.style.fontWeight='normal';
    other_p.style.backgroundColor=colorOff;
}

else {
    desg.style.display='none';
    desg_p.style.fontWeight='normal';
    desg_p.style.backgroundColor=colorOff;
    maint.style.display='none';
    maint_p.style.fontWeight='normal';
    maint_p.style.backgroundColor=colorOff;
    other.style.display='block';
    other_p.style.fontWeight='bold';
    other_p.style.backgroundColor=colorOn;
}
//
}

var a;
var xpos=-200;
var started=0;
var Id=0;
function movemenu1(evnt){
if (a==1){
a=-1;
}
else{
a=1;
}
if(document.layers){document.contents.top=document.marker.top+40;document.contents.visibility='visible';}
if(document.all){document.all.contents.style.top=parseInt(document.all.marker.style.top)+30;document.all.contents.style.visibility="visible";}
if(!document.all && document.getElementById){
document.getElementById("contents").style.top=parseInt(document.getElementById("marker").style.top)+30+"px";
document.getElementById("contents").style.visibility="visible";
}
if(!Id){movemenu();started=1;}
}

function movemenu(){
if(xpos>4){xpos=0;}
if(xpos<-200){xpos=-200;}
xpos=xpos+4*a;
if(document.layers){
document.contents.left=xpos;
}
if(document.all){
document.all.contents.style.left=xpos;
}
if(!document.all && document.getElementById){
document.getElementById("contents").style.left=xpos+"px";
}
if (xpos<=-200 || xpos>=0){window.clearTimeout(Id);Id=0;}else{Id = window.setTimeout("movemenu();",100);}
}