


document.write("<img border=0 src='images/header.jpg' name='img_header' usemap='#header_map'><br>");
		



//****************************************************************
//****************************************************************
//build image map - header

document.write("<map name='header_map'>")
document.write("<area shape='rect'  coords='295,175,363,193' onMouseOver='Header_Home()' onMouseOut='Header_Map_Out()' href='index.html'>")
document.write("<area shape='rect'  coords='411,174,472,193' onMouseOver='Header_Links()' onMouseOut='Header_Map_Out()' href='links.htm'>")
document.write("<area shape='rect'  coords='525,174,627,194' onMouseOver='Header_About()' onMouseOut='Header_Map_Out()' href='about.htm'>")
document.write("<area shape='rect'  coords='661,175,774,192' onMouseOver='Header_Contact()' onMouseOut='Header_Map_Out()' href='contact.htm'>")


document.write("<area shape='default' nohref>")
document.write("</map>")
document.write("<area shape='default' nohref>")
document.write("</map>");


//*****************************************************************
//*****************************************************************
//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_Links() 
{
	document.img_header.src = "images/h_links.jpg"; return true;
}

function Header_About() 
{
	document.img_header.src = "images/h_about.jpg"; return true;
}

function Header_Contact() 
{
	document.img_header.src = "images/h_contact.jpg"; return true;
}












