img1=new Image()
img1.src="./images/buttons/home.gif"
img2=new Image()
img2.src="./images/buttons/home_down.gif"
imgA=new Image()
imgA.src="./images/buttons/home_click.gif"
img3=new Image()
img3.src="./images/buttons/resume.gif"
img4=new Image()
img4.src="./images/buttons/resume_down.gif"
imgB=new Image()
imgB.src="./images/buttons/resume_click.gif"
img5=new Image()
img5.src="./images/buttons/pictures.gif"
img6=new Image()
img6.src="./images/buttons/pictures_down.gif"
imgC=new Image()
imgC.src="./images/buttons/pictures_click.gif"
img7=new Image()
img7.src="./images/buttons/humor.gif"
img8=new Image()
img8.src="./images/buttons/humor_down.gif"
imgD=new Image()
imgD.src="./images/buttons/humor_click.gif"
img9=new Image()
img9.src="./images/buttons/links.gif"
img10=new Image()
img10.src="./images/buttons/links_down.gif"
imgE=new Image()
imgE.src="./images/buttons/links_click.gif"
img11=new Image()
img11.src="./images/buttons/e-mail.gif"
img12=new Image()
img12.src="./images/buttons/e-mail_down.gif"
imgF=new Image()
imgF.src="./images/buttons/e-mail_click.gif"
img13=new Image()
img13.src="./images/buttons/whats_new.gif"
img14=new Image()
img14.src="./images/buttons/whats_new_down.gif"
imgG=new Image()
imgG.src="./images/buttons/whats_new_click.gif"
img15=new Image()
img15.src="./images/buttons/family.gif"
img16=new Image()
img16.src="./images/buttons/family_down.gif"
imgH=new Image()
imgH.src="./images/buttons/family_click.gif"
img17=new Image()
img17.src="./images/buttons/friends.gif"
img18=new Image()
img18.src="./images/buttons/friends_down.gif"
imgI=new Image()
imgI.src="./images/buttons/friends_click.gif"
img19=new Image()
img19.src="./images/buttons/me.gif"
img20=new Image()
img20.src="./images/buttons/me_down.gif"
imgJ=new Image()
imgJ.src="./images/buttons/me_click.gif"
img21=new Image()
img21.src="./images/buttons/music.gif"
img22=new Image()
img22.src="./images/buttons/music_down.gif"
imgK=new Image()
imgK.src="./images/buttons/music_click.gif"
img23=new Image()
img23.src="./images/buttons/play.gif"
img24=new Image()
img24.src="./images/buttons/play_down.gif"
imgL=new Image()
imgL.src="./images/buttons/play_click.gif"

// Function for loading two frames at a time --------------------------------------------------------------------------

  function loadTwoFrames(menuURL, contentURL)
    {
     parent.menu.location.href=menuURL
     parent.content.location.href=contentURL
    }

// John S. Monaco (bishop08@yahoo.com) 4/1/2002
// The script below dynamically creates a frame to paste a picture into 
// How is this for my second attempt at writing a script with little guidance?
// It could have been written on one line, but who could read it?

  function writeContent(thisPage, thisComment)
    {
     parent.content.document.writeln("<\!DOCTYPE HTML PUBLIC \"-\/\/W3C\/\/DTD HTML 4.0 Strict file:\/\/EN\">")
     parent.content.document.writeln("<HTML>")
     parent.content.document.writeln("  <HEAD>")
     parent.content.document.writeln("    <TITLE>Pictures: "+thisPage+".jpg<\/TITLE>")
     parent.content.document.writeln("")
     parent.content.document.writeln("    <LINK REL=STYLESHEET HREF=\".\/content.css\" TYPE=\"TEXT\/CSS\">")
     parent.content.document.writeln("")
     parent.content.document.writeln("  <\/HEAD>")
     parent.content.document.writeln("")
     parent.content.document.writeln("  <BODY>")
     parent.content.document.writeln("")
     parent.content.document.writeln("    <TABLE CELLSPACING=1 CELLPADDING=4>")
     parent.content.document.writeln("")
     parent.content.document.writeln("      <TR>")
     parent.content.document.writeln("        <TD ALIGN=CENTER VALIGN=MIDDLE><IMG SRC=\".\/images\/small_pics\/"+thisPage+".jpg\" BORDER=0 ALT=\""+thisPage+".jpg\"><\/TD>")
     parent.content.document.writeln("        <TD ALIGN=LEFT VALIGN=MIDDLE><H2>"+thisComment+"<\/H2><\/TD><BR>")
     parent.content.document.writeln("      <\/TR>")
     parent.content.document.writeln("")
     parent.content.document.writeln("    <\/TABLE>")
     parent.content.document.writeln("")
     parent.content.document.writeln("  <\/BODY>")
     parent.content.document.writeln("<\/HTML>")
     parent.content.document.close()
    }