function print_nav () {
	
	document.write("<map name='map1'>");
	document.write("	<area shape='rect' coords='0,0,45,17' onmouseover='hideSubmenu()' href='about.htm' alt=''>");
	document.write("	<area shape='rect' coords='60,0,150,17' onmouseover='showSubmenu();' alt=''>");
	document.write("	<area shape='rect' coords='165,0,270,17' onmouseover='hideSubmenu();' href='custom.htm' alt=''>");
	document.write("	<area shape='rect' coords='289,1,389,23' onmouseover='hideSubmenu();' href='dealer_login.php' alt=''>");
	document.write("	<area shape='rect' coords='402,0,497,17' onmouseover='hideSubmenu();' href='./wheretobuy.php' alt=''>");
	document.write("	<area shape='rect' coords='513,-1,638,16' onmouseover='hideSubmenu()' href='request.htm' alt=''>");
	document.write("	<area shape='rect' coords='649,-2,719,15' onmouseover='hideSubmenu()' href='contact.htm' alt=''>");
	document.write("	<area shape='rect' coords='729,0,779,17' onmouseover='hideSubmenu()' href='press.htm' alt=''>");
	document.write("</map>");
	document.write("<img src='images/nav.jpg' usemap='#map1'>");
	document.write("<div id='dropmenudiv'><a onmouseover='showSubmenu()' onmouseout='hideSubmenu()' href='lilly.htm'>Lilly Pulitzer</a><a onmouseout='hideSubmenu()' onmouseover='showSubmenu()' href='jonathan.htm'>Jonathan Adler</a><a onmouseout='hideSubmenu()' onmouseover='showSubmenu()' href='susanbranch.htm'>Susan Branch</a><a onmouseout='hideSubmenu()' onmouseover='showSubmenu()' href='susan.htm'>Susan Wallace Barnes<br/> <span style='font-size: 10px'>1999-2010</span></a><a onmouseover='showSubmenu()' onmouseout='hideSubmenu()' href='vera.htm'>Vera Bradley <br/><span style='font-size: 10px'>2005-2008</span></a></div>");

}

function print_footer () {

	document.write("<map name='map2'>");
	document.write("	<area shape='rect' coords='0,0,44,11' onmouseover='hideSubmenu()' href='about.htm' alt=''>");
	document.write("	<area shape='rect' coords='56,0,152,11' onmouseover='hideSubmenu()' href='./wheretobuy.php' alt=''>");
	document.write("	<area shape='rect' coords='170,0,225,11' onmouseover='hideSubmenu()' href='contact.htm' alt=''>");
	document.write("	<area shape='rect' coords='245,0,330,11' onmouseover='hideSubmenu()' href='tradeshows.htm' alt=''>");
	document.write("</map>");
	document.write("<img src='images/footer.jpg' usemap='#map2'>");
	
}


function hideSubmenu () {
	
	if (document.getElementById) { // DOM3 = IE5, NS6
		document.getElementById('dropmenudiv').style.visibility = 'hidden';
		document.getElementById('dropmenudiv').style.display = 'none';
	}
	else {
		if (document.layers) { // Netscape 4
		document.dropmenudiv.visibility = 'hidden';
		document.dropmenudiv.display = 'none';
		}
		else { // IE 4
			document.all.dropmenudiv.style.visibility = 'hidden';
			document.all.dropmenudiv.style.display = 'none';
		}
	}
	
}

function showSubmenu() {
	if (document.getElementById) { // DOM3 = IE5, NS6
		document.getElementById('dropmenudiv').style.visibility = 'visible';
		document.getElementById('dropmenudiv').style.display = 'block';
	}
	else {
		if (document.layers) { // Netscape 4
		document.dropmenudiv.visibility = 'visible';
		document.dropmenudiv.display = 'block';
		}
		else { // IE 4
		document.all.dropmenudiv.style.visibility = 'visible';
		document.all.dropmenudiv.style.display = 'block';
		}
	}
} 



function hideSubmenu2 () {
	
	if (document.getElementById) { // DOM3 = IE5, NS6
		document.getElementById('dropmenudiv2').style.visibility = 'hidden';
		document.getElementById('dropmenudiv2').style.display = 'none';
	}
	else {
		if (document.layers) { // Netscape 4
		document.dropmenudiv2.visibility = 'hidden';
		document.dropmenudiv2.display = 'none';
		}
		else { // IE 4
			document.all.dropmenudiv2.style.visibility = 'hidden';
			document.all.dropmenudiv2.style.display = 'none';
		}
	}
	
}

function showSubmenu2() {
	if (document.getElementById) { // DOM3 = IE5, NS6
		document.getElementById('dropmenudiv2').style.visibility = 'visible';
		document.getElementById('dropmenudiv2').style.display = 'block';
	}
	else {
		if (document.layers) { // Netscape 4
		document.dropmenudiv2.visibility = 'visible';
		document.dropmenudiv2.display = 'block';
		}
		else { // IE 4
		document.all.dropmenudiv2.style.visibility = 'visible';
		document.all.dropmenudiv2.style.display = 'block';
		}
	}
} 