//sevices Scripts
//hides nav bar for section
function hide(theID){
pausecomp(20);
document.getElementById('show').id='hide';
if (theID == 'services')document.getElementById('servicesActive').id='services';
if (theID == 'editorial')document.getElementById('editorialActive').id='editorial';
if (theID == 'clients')document.getElementById('clientsActive').id='clients';
if (theID == 'about')document.getElementById('aboutActive').id='about';
return true;
}


//shows nav bar for section
function show(theID){
pausecomp(20);
if(document.getElementById('hide')) document.getElementById('hide').id='show';
if(theID == 'services')document.getElementById('services').id='servicesActive';
if(theID == 'editorial')document.getElementById('editorial').id='editorialActive';
if(theID == 'clients')document.getElementById('clients').id='clientsActive';
if(theID == 'about')document.getElementById('about').id='aboutActive';
return true;
}

/*
//sevices Scripts
//hides nav bar for section
function hide(){
pausecomp(20);
document.getElementById('show').id='hide';
document.getElementById('servicesActive').id='services';
return true;
}


//shows nav bar for section
function show(){
pausecomp(20);
if(document.getElementById('hide')) document.getElementById('hide').id='show';
if(document.getElementById('services'))document.getElementById('services').id='servicesActive';
return true;
}
*/