function turnOn( sV ) {
		hideAllDivs();
		document.getElementById( sV ).style.visibility = "visible";
		document.getElementById( sV ).style.cursor = "hand"
		
		turnOffAllStyleDivs();
		turnOnStyle( sV );
		
		return true;
		
	}
	
	function turnOff( sV ){
		document.getElementById( sV ).style.visibility = "hidden";
		//document.getElementById( sV+"style" ).style.visibility = "hidden";
		document.getElementById( sV ).style.cursor = "hand"
	}
	
	function hideAllDivs() {
		turnOff( "aboutus" );
		turnOff( "services" );
		turnOff( "emailus" );
		turnOff( "directions" );
	}
	
	function turnOffAllStyleDivs() {
		turnOff( "aboutusstyle" );
		turnOff( "servicesstyle" );
		turnOff( "emailusstyle" );
		turnOff( "directionsstyle" );
	}
	
	function turnOnStyle( sV ){
		document.getElementById( sV +"style" ).style.visibility = "visible";
	}
	
	function doIt( sV ) {
		alert(sV);	
		turnOn(sV);

	}
	
	function comingSoon() {
	
		alert("Please Check back soon");
	
	}
	
	function getDirs() {
	
		var url = "http://maps.google.com/maps?q=3900%20legacy%20park%20blvd%2C%20kennesaw%2C%20ga&spn=0.038330%2C0.059957&hl=en";
		var xMax = screen.width;
		var yMax = screen.height;
		var xOffset = (xMax - 200)/2;
		var yOffset = (yMax - 200)/2;
		
		//alert(url);
		
		// display Calendar in popup
		window.open(url,'SearchOps','toolbar=0,menubar=0,scrollbars=1,resizable=0,width=695,height=510,screenX=' + xOffset + ',screenY=' + yOffset + ',top=' + yOffset+ ',left=' + xOffset + '');
	
	}