<!--
document.write('<style type="text/css">#general_info, #clinical_services, #health_iowa, #temp {display:none;}</style>');


  function breadcrumbs(){
    sURL = new String; 							//create a new string object
    bits = new Object; 							//create a new object
    var x = 0;									//define variable "x"
    var stop = 0;								//define variable "stop"
    sURL = location.href;						//sURL equals the href location
    sURL = sURL.slice(8,sURL.length);			//slice sURL up and get rid of the first 8 characters
    chunkStart = sURL.indexOf("/");				//find the first occurrance of "/" in the new sURL
    sURL = sURL.slice(chunkStart+1,sURL.length)	//sURL equals sURL sliced starting after the first occurrance of "/" and ending at the end
    while(!stop){								//while stop is null - each time it's going to cut off the next chunk
      chunkStart = sURL.indexOf("/");			//find the first occurrance of "/" in the new sURL
      if (chunkStart != -1){					//if it's not the end, keep going, otherwise go to stop
        bits[x] = sURL.slice(0,chunkStart)		//the object "bits" equals sURL sliced starting at the beginning and ending after the next occurrance of "/"
        sURL = sURL.slice(chunkStart+1,sURL.length);	//create the new sURL for the next iteration of the loop
	   }else{									//if it's the end
        stop = 1;								//stop
      }					
      x++;										//add one to the value of x
    }
  }
    
  function switchMenu(obj) {
var nav = document.getElementById(obj);
if ( nav.style.display != 'block') {
       nav.style.display = 'block';
	 }
	 else {
	 nav.style.display = 'none';
	 }
}


breadcrumbs();
var folder = bits[0];

function openMenu(folder) {
	if(folder == undefined){
		//document.writeln(folder);
	}else if (folder == 'healthblog'){
		
	}else{
	//document.writeln(folder);
	var allmenu = document.getElementById(folder);
	allmenu.style.display = "block";
	}
}


// -->