// JavaScript Document

function authorpic(me) {
      if (me == "posted by Emily Northey") {
      document.write("<img src='/img/headshots/emily-roragen.jpg' border='0' />Post by <b>Emily Northey</b>");
      } else if (me == "posted by Miranda Anderson") {
      document.write("<img src='/img/headshots/miranda_anderson.jpg' border='0' />Post by <b>Miranda Anderson</b>");
      } else if (me == "posted by Lisa Paxton, Chamber CEO") {
      document.write("<img src='/img/headshots/lisa-paxton.jpg' border='0' />Post by <b>Lisa Paxton</b>");
      } else if (me == "posted by Greg Bergman") {
      document.write("<img src='/img/headshots/greg-bergman.jpg' border='0' />Post by <b>Greg Bergman</b>");
      } else if (me == "posted by Ruth Ann") {
      document.write("<img src='/img/headshots/ruth-ann.jpg' border='0' />Post by <b>Ruth Ann</b>");
      } else if (me == "posted by Gretchen Ennis, Tourism Director") {
      document.write("<img src='/img/headshots/gretchen-ennis.jpg' border='0' />Post by <b>Gretchen Ennis</b>");
      } else if (me == "posted by Gretchen Ennis") {
      document.write("<img src='/img/headshots/gretchen-ennis.jpg' border='0' />Post by <b>Gretchen Ennis</b>");
      } else if (me == "posted by Kathi Nagorski") {
      document.write("<img src='/img/headshots/kathi-nagorski.jpg' border='0' />Post by <b>Kathi Nagorski</b>");
	  } else if (me == "posted by Holly Holm") {
      document.write("<img src='/img/headshots/holly-holm.jpg' border='0' />Post by <b>Holly Holm</b>");
      } else {
      document.write(me);
      } 
}
