// JavaScript Document

function header_menu()
{
  var str='';
  str="<table width='100%' border='0' cellspacing='0' cellpadding='0'>";
  str+="<tr>";
  str+="<td bgcolor='#a53f0e'><img src='topmenu.jpg' border='0' usemap='#Map' href='index.html' width='732' height='79' /></td>";
  str+="</tr>";
  str+="<tr>";
  str+="<td bgcolor='#000000'><img src='menubottomstrip.jpg' width='732' height='30' usemap='#Map2' border='0'/></td>";
  str+="</tr>";
  str+="</table>";
	str+="<map name='Map' id='Map'>";
	str+="<area shape='rect' coords='186,47,262,77' href='aboutus.html' />";
	str+="<area shape='rect' coords='265,47,332,77' href='store.html' />";
	str+="<area shape='rect' coords='334,47,417,77' href='products.html' />";
	str+="<area shape='rect' coords='419,47,556,77' href='calender.html' />";
	str+="<area shape='rect' coords='576, 5, 600, 29' href='index.html' />";
	str+="<area shape='rect' coords='561,47,648,77' href='instruction.html' />";
	str+="<area shape='rect' coords='651,47,730,77' href='contactus.html' />";
    str+="<area shape='rect' coords='13,32,176,80' href='index.html' />";
	str+="</map>";
    str+="<map name='Map2' id='Map2'><area shape='rect' coords='116,0,176,20' href='index.html' /></map>";

document.write(str);
}

