function navToggle(id) {
	hideNav("solutionsSub");
	hideNav("insiderSub");
	showNav(id);
}

function hideNav(id) {
	navItem = document.getElementById(id);
	navItem.style.display = "none";
}

function showNav(id) {
	navItem = document.getElementById(id);
	navItem.style.display = "block";
}

function writeQuote(){
	var activeNumber = Math.floor(Math.random()*3);
	switch(activeNumber){
		case 0:
		  document.write("<h4 id='quoteOne'>Our independence is your advantage.</h4>");
		  break;    
		case 1:
		   document.write("<h4 id='quoteTwo'>The difficult we do immediately. The impossible just takes a little longer</h4>");
		  break;
		default:
		  document.write("<h4 id='quoteThree'>Think of us as your working  partner.</h4>");
	}
}