//left menu
var count=0
function menu(){
document.write("<DIV CLASS='posspages' STYLE='width:160px; margin-bottom:2px'>Joke Archive</DIV>")


document.write("<UL ID='menu' STYLE='margin-top:1px'>")
document.write('<A HREF="Joke.html" CLASS="off2">Joke of the Month</A>')
document.write("<LI><A HREF='Joke19.html' CLASS='off2' onMouseOver='this.className= " + '"' + onMenu + '"'+"' onMouseOut='this.className=" + '"' + offMenu + '"' + "' ID='j19'>Bear Hunting</A>")
count++
document.write("<LI><A HREF='Joke18.html' CLASS='off2' onMouseOver='this.className= " + '"' + onMenu + '"'+"' onMouseOut='this.className=" + '"' + offMenu + '"' + "' ID='j18'>Relative Cold</A>")
count++
document.write("<LI><A HREF='Joke17.html' CLASS='off2' onMouseOver='this.className= " + '"' + onMenu + '"'+"' onMouseOut='this.className=" + '"' + offMenu + '"' + "' ID='j17'>More Penguins</A>")
count++
document.write("<LI><A HREF='Joke16.html' CLASS='off2' onMouseOver='this.className= " + '"' + onMenu + '"'+"' onMouseOut='this.className=" + '"' + offMenu + '"' + "' ID='j16'>Medics</A>")
count++
document.write("<LI><A HREF='Joke15.html' CLASS='off2' onMouseOver='this.className= " + '"' + onMenu + '"'+"' onMouseOut='this.className=" + '"' + offMenu + '"' + "' ID='j15'>Irish Weddings</A>")
count++
document.write("<LI><A HREF='Joke14.html' CLASS='off2' onMouseOver='this.className= " + '"' + onMenu + '"'+"' onMouseOut='this.className=" + '"' + offMenu + '"' + "' ID='j14'>Deer Hunting</A>")
count++
document.write("<LI><A HREF='Joke13.html' CLASS='off2' onMouseOver='this.className= " + '"' + onMenu + '"'+"' onMouseOut='this.className=" + '"' + offMenu + '"' + "' ID='j13'>Technology</A>")
count++
document.write("<LI><A HREF='Joke12.html' CLASS='off2' onMouseOver='this.className= " + '"' + onMenu + '"'+"' onMouseOut='this.className=" + '"' + offMenu + '"' + "' ID='j12'>Road Kill</A>")
count++
document.write("<LI><A HREF='Joke11.html' CLASS='off2' onMouseOver='this.className= " + '"' + onMenu + '"'+"' onMouseOut='this.className=" + '"' + offMenu + '"' + "' ID='j11'>Perspective</A>")
count++
document.write("<LI><A HREF='Joke10.html' CLASS='off2' onMouseOver='this.className= " + '"' + onMenu + '"'+"' onMouseOut='this.className=" + '"' + offMenu + '"' + "' ID='j10'>State Capitals</A>")
count++
document.write("<LI><A HREF='Joke09.html' CLASS='off2' onMouseOver='this.className= " + '"' + onMenu + '"'+"' onMouseOut='this.className=" + '"' + offMenu + '"' + "' ID='j9'>Heaven and Hell</A>")
count++
document.write("<LI><A HREF='Joke08.html' CLASS='off2' onMouseOver='this.className= " + '"' + onMenu + '"'+"' onMouseOut='this.className=" + '"' + offMenu + '"' + "' ID='j8'>Penguins</A>")
count++
document.write("<LI><A HREF='Joke07.html' CLASS='off2' onMouseOver='this.className= " + '"' + onMenu + '"'+"' onMouseOut='this.className=" + '"' + offMenu + '"' + "' ID='j7'>Cats &amp; Dogs</A>")
count++
document.write("<LI><A HREF='Joke06.html' CLASS='off2' onMouseOver='this.className= " + '"' + onMenu + '"'+"' onMouseOut='this.className=" + '"' + offMenu + '"' + "' ID='j6'>Democrats &amp; Republicans</A>")
count++
document.write("<LI><A HREF='Joke05.html' CLASS='off2' onMouseOver='this.className= " + '"' + onMenu + '"'+"' onMouseOut='this.className=" + '"' + offMenu + '"' + "' ID='j5'>The Flood</A>")
count++
document.write("<LI><A HREF='Joke04.html' CLASS='off2' onMouseOver='this.className= " + '"' + onMenu + '"'+"' onMouseOut='this.className=" + '"' + offMenu + '"' + "' ID='j4'>College Football</A>")
count++
document.write("<LI><A HREF='Joke03.html' CLASS='off2' onMouseOver='this.className= " + '"' + onMenu + '"'+"' onMouseOut='this.className=" + '"' + offMenu + '"' + "' ID='j3'>Sherlock and Watson</A>")
count++
document.write("<LI><A HREF='Joke02.html' CLASS='off2' onMouseOver='this.className= " + '"' + onMenu + '"'+"' onMouseOut='this.className=" + '"' + offMenu + '"' + "' ID='j2'>Halloween Costume</A>")
count++
document.write("<LI><A HREF='Joke01.html' CLASS='off2' onMouseOver='this.className= " + '"' + onMenu + '"'+"' onMouseOut='this.className=" + '"' + offMenu + '"' + "' ID='j1'>Old West</A>")
count++
document.write("</UL>")
}

//bottom navigation
function nav(x) {
	nxt=x+1
	prev=x-1
	if (prev<10) {
		if (prev>1) {
			prev = "0"+prev
		} else {
			prev = ""
		}
	}
	if (nxt<10) {
		nxt = "0"+nxt
	}
document.write('<A HREF="Joke'+prev+'.html"><IMG SRC="images/prev.gif" WIDTH="50" HEIGHT="68" ALT="" BORDER="0"></A>')
document.write("&nbsp;&nbsp;&nbsp;")
if (thisindex<count) {
document.write('<A HREF="Joke'+nxt+'.html"><IMG SRC="images/next.gif" WIDTH="50" HEIGHT="68" ALT="" BORDER="0"></A>')
}
}
