// <![cdata[ 
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='285,0,380,17' onmouseover='hideSubmenu();' href='wheretobuy.cgi' alt=''>");
	document.write("	<area shape='rect' coords='390,0,515,17' onmouseover='hideSubmenu()' href='request.htm' alt=''>");
	document.write("	<area shape='rect' coords='525,0,595,17' onmouseover='hideSubmenu()' href='contact.htm' alt=''>");
	document.write("	<area shape='rect' coords='600,0,650,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='susan.htm'>Susan Wallace Barnes</a><a onmouseover='showSubmenu()' onmouseout='hideSubmenu()' href='vera.htm'>Vera Bradley <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.cgi' 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';
		}
	}
}

// ]]> 