//Draw Header 








document.write("<img src='images/headera.jpg' border='0'><br>");
document.write("<img src='images/header.jpg' name='img_header' usemap='#header_map' border='0'><br>");
//document.write("<img border=0 src='images/hbuttons.jpg' name='img_header' usemap='#header_map'><br>");




document.write("<map name='header_map'>")
document.write("<area shape='rect'  coords='12,0,69,34' onMouseOver='Header_Home()' onMouseOut='Header_Map_Out()' href='index.htm'>")
document.write("<area shape='rect'  coords='98,0,183,34' onMouseOver='Header_Products()' onMouseOut='Header_Map_Out()' href='products.htm'>")
document.write("<area shape='rect'  coords='208,0,392,34' onMouseOver='Header_Services()' onMouseOut='Header_Map_Out()' href='service.htm'>")
document.write("<area shape='rect'  coords='413,0,502,34' onMouseOver='Header_About()' onMouseOut='Header_Map_Out()' href='about.htm'>")
document.write("<area shape='rect'  coords='524,0,635,34' onMouseOver='Header_Contact()' onMouseOut='Header_Map_Out()' href='contact.htm'>")


document.write("<area shape='default' nohref>")
document.write("</map>")

document.write("<br>")
document.write("<a href='teach.htm'><img src='images/bar.jpg' border='0'></a>");

//document.write("<br>")
//document.write("CLICK HERE! No need to drive to Staples or Office Max. To check out our online office supplies superstore. Quickly browse and purchase everything you need with the click of your mouse. ")

//*****************************************************************
//*****************************************************************
//image flip functions
function Header_Map_Out() 
{
	
	document.img_header.src = "images/header.jpg"; return true;
}

function Header_Home() 
{
	document.img_header.src = "images/h_home.jpg"; 
	return true;
}

function Header_Products() 
{
	document.img_header.src = "images/h_products.jpg"; 
	return true;
}


function Header_Services() 
{
	document.img_header.src = "images/h_supplies.jpg"; 
	return true;
}

function Header_Contact() 
{
	document.img_header.src = "images/h_contact.jpg"; 
	return true;
}

function Header_About() 
{
	document.img_header.src = "images/h_about.jpg"; 
	return true;
}











