function header (imgfile) {
	document.writeln("<img src='images/header/"+imgfile+"' border='0' usemap='#header' style='margin-bottom:-5px;'>");
	document.writeln("<map name='header'>");
	  document.write("<area shape='poly' coords='16,93, 16,110, 77,110, 77,115, 111,144, 151,144, 185,115, 185,110, ");
	  document.write("239,110, 239,93, 185,93, 185,66, 174,46, 151,29, 151,7, 111,7, 111,29, 87,46, 77,66, 77,93' ");
	document.writeln("href='index.htm'>");
	document.writeln("<area shape='rect' coords='698,7,718,28' href='http://twitter.com/WKONA' target='_blank'>");
	document.writeln("<area shape='rect' coords='724,5,748,28' href='http://www.facebook.com/pages/Western-Kentucky-Orthopaedic-and-Neurosurgical-Associates/106475709399701' target='_blank'>");
	document.writeln("<area shape='rect' coords='370,30,426,77' href='http://d1bowlinggreen.com' target='_blank'>");
	document.writeln("<area shape='rect' coords='753,5,775,28' href='http://www.youtube.com/user/WKONA?feature=mhsn' target='_blank'>");
	
	if (imgfile == "index3.jpg") {
		document.writeln("<area shape='rect' coords='699,126,761,137' href='content/PATIENT FORM.pdf' target='_blank'>");
	}
	
	document.writeln("</map>");
}

function menu (ontab) {
	tablist = new Array("phys±physicians.htm", "mri±mri.htm", "pnot±pnot.htm", "bone±bone-density.htm", "sport±sports.htm");

	document.writeln("<ul class='navbar'>");
	for (i=0; i<tablist.length; i++) {
		data = tablist[i].split("±");
		if (i == ontab) {
			document.writeln("<li><img src='images/nav/"+data[0]+"_on.gif' border='0'></li>");
		} else {
			  document.write("<li><a href='"+data[1]+"'><img src='images/nav/"+data[0]+"_off.gif' border='0' ");
			  document.write("onmouseover=\"this.src='images/nav/"+data[0]+"_on.gif'\" ");
			document.writeln("onmouseout=\"this.src='images/nav/"+data[0]+"_off.gif'\"></a></li>");
		}
	}
	document.writeln("</ul>");
}

function footer () {
	document.writeln("<div style='font:900 12px Arial; color:#008080; padding-top:10px;'>");
	document.writeln("	<a href='contactus.htm' style='text-decoration:none; color:#008080;'>Contact</a>");
	document.writeln("		&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;");
	document.writeln("	<a href='careers.htm' style='text-decoration:none; color:#008080;'>Careers</a>");
	document.writeln("		&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;");
	document.writeln("	<a href='#' style='text-decoration:none; color:#008080;'>Admin</a>");
	document.writeln("		&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;");
	document.writeln("	<a href='sitemap.htm' style='text-decoration:none; color:#008080;'>Sitemap</a>");
	document.writeln("</div>");
	document.writeln("<div style='width:600px; font:10px Arial; color:#008080; padding:15px 0px 25px 0px;'>");
	document.writeln("	<div style='float:right;'>165 Natchez Trace, Suite 100 Bowling Green, Ky 42103</div>");
	document.writeln("	&copy; 2010. Western Kentucky Orthopaedic & Neurosurgical Associates.");
	document.writeln("</div>");
}


