function leftNavMoreInfo(contentType){
   
  var moreInfoDiv = document.getElementById("leftNavMoreInfo");
  if(contentType=="aboutUs"){
    moreInfoDiv.innerHTML = "Learn all about us and why the we would ever want to spend the rest of our lives together!"
  }
  if(contentType=="info"){
    moreInfoDiv.innerHTML = "When is it?...Where is it?..."
  }
  if(contentType=="bparty"){
    moreInfoDiv.innerHTML = "Get to know our bridal party...Interesting folk ahead!"
  }
  if(contentType=="registry"){
    moreInfoDiv.innerHTML = "Things we may be interesting in having... ;-)"
  }
  if(contentType=="pictures"){
    moreInfoDiv.innerHTML = "See more unphotogenic picture of us.  And some good ones of our friends and family."
  }
  if(contentType=="guestBook"){
    moreInfoDiv.innerHTML = "Have something on your mind you'd like say?  Here's the place to do it..."
  }
  if(contentType=="todo"){
    moreInfoDiv.innerHTML = "Staying for awhile?  Here's a list of fun things to do in the area."
  }
  


}

function clearMoreInfo(){

 var moreInfoDiv = document.getElementById("leftNavMoreInfo");
 moreInfoDiv.innerHTML = ""

}
