<!--- Home Page JavaScript --->

  var imgBanner = new Image(); imgBanner.src="images/starsnbars.jpg"
  var imgAmazon = new Image(); imgAmazon.src="images/amznHomeLogo.gif"

  var txtTitle = "Virtual Palmyra Post - Homepage of the 14th Tennessee, Co. B"

  var blnTimerOn = new Boolean(); blnTimeron = 0

  var aImages = new Array(5)
   aImages[0] = "images/bonnieblue.gif"
   aImages[1] = "images/conflag.gif"
   aImages[2] = "images/starsnbars.jpg"
   aImages[3] = "images/BattleFlag.jpg"
   aImages[4] = "images/Csflag3_a.jpg"
  var nImages = aImages.length

  var aImagesBW = new Array(10)
   aImagesBW[0] = "images/2rebels.gif"
   aImagesBW[1] = "images/rebs.gif"
   aImagesBW[2] = "images/barefoot.gif"
   aImagesBW[3] = "images/infantry.gif"
   aImagesBW[4] = "images/march.gif"
   aImagesBW[5] = "images/rebel01.gif"
   aImagesBW[6] = "images/Firing.jpg"
   aImagesBW[7] = "images/gp_Routstep.gif"
   aImagesBW[8] = "images/gp_Pelican.gif"
   aImagesBW[9] = "images/3gb.jpg"

  var nImagesBW = aImagesBW.length
  var nCount = 0


document.write("<TITLE>" + txtTitle + "</TITLE>")


function getHomePageHeading()
{

 with (document)
 {

<!--- Begin Table
  write("<CENTER>")
  write("<TABLE CELLSPACING=0 BORDER=0 CELLPADDING=7 WIDTH='100%'>")

<!--- Heading Row --->

  write("<TR>")

<!--- Leftmost Field --->
  write("<TD WIDTH='20%' VALIGN='TOP'  ALIGN='LEFT'>")

  write("<IMG SRC='" + imgBanner.src + "' WIDTH='113' HEIGHT='68' NAME='theImage'>")

  write("</TD>")

<!--- Middle Field --->
  write("<TD WIDTH='50%' VALIGN='TOP' ALIGN='CENTER'>")
  write("<H1><I>The Palmyra Post</I></H1>")
  write("<P>")
  write("<H4>D.C.Lund, Editor &amp; Publisher</H4>")
  write("</P>")
  write("</TD>")

<!--- Rightmost Field --->

  write("<TD WIDTH='30%' VALIGN='TOP'  ALIGN='RIGHT'>")
  write("<B><I>This site supports:</B></I>")
  write("<P><A HREF='http://www.civilwar.org/'><B>The Civil War Trust</B></A>")
  write("<P><A HREF='http://www.amazon.com/exec/obidos/redirect-home/virtualpalmyrapo'>")
  write("<IMG SRC='images/amznHomeLogo.gif' BORDER=0 WIDTH=90 HEIGHT=29>")
  write("</A>")
  write("</TD>")
  write("</TR>")

<!--- End of Table --->

  write("</TABLE>")
  write("<B>The Virtual Newsletter of Company 'B', 14<SUP>th</SUP> Tennessee Volunteers</B>")
  write("</CENTER>")
 }

}


  /* Cycle Images */
function cycle() {
  /* test browser vintage */
  if (document.images) {
    if (document.theImageLeft.complete) {
      nCount++
      if (nCount == nImagesBW) {
        nCount = 0
      }
      document.theImageRight.src = document.theImageLeft.src
      document.theImageLeft.src=aImagesBW[nCount]
    }
     setTimeout("cycle()", 4 * 1000)
  }
}
  /* Random Images */
  function selectImage() {   
  /* test browser vintage */
   if (document.images) {
    nRandom = Math.floor((Math.random()*10)) % nImages
    document.theImage.src = aImages[nRandom]

    setTimeout("cycle()", 4 * 1000) 

   }
  }

