// startList = function() {
// if (document.all&&document.getElementById) {
// navRoot = document.getElementById("nav");
// for (i=0; i<navRoot.childNodes.length; i++) {
// node = navRoot.childNodes[i];
// if (node.nodeName=="LI") {
// node.onmouseover=function() {
// this.className+=" over";
//   }
//   node.onmouseout=function() {
//   this.className=this.className.replace(" over", "");
//    }
//    }
//   }
//  }
//   
// }
// window.onload=startList;




function showContent(x){
    var upper = 4;
    var i=1;
for (i=1; i<=upper; i++)
    {
        if (i == x){
            document.getElementById("C"+x).style.display='block';
        }
        else {
            
            document.getElementById("C"+i).style.display='none';
           
        }
       
    }

    
  
}

function showIndustry(){
    document.getElementById("industryNav").style.display='block';
    document.getElementById("serviceNav").style.display='none';
    document.getElementById("aboutNav").style.display='none';
    //document.getElementById("MainIndustry").className = 'MainOver';
    
}

function showService(){
    document.getElementById("industryNav").style.display='none';
    document.getElementById("serviceNav").style.display='block';
    document.getElementById("aboutNav").style.display='none';
    //document.getElementById("MainService").className = 'MainOver';
    
}

function showAbout(){
    document.getElementById("industryNav").style.display='none';
    document.getElementById("serviceNav").style.display='none';
    document.getElementById("aboutNav").style.display='block';
    //document.getElementById("MainAbout").className = 'MainOver';
    
}
