function displayHomeNavigationBar()
{
	var html = '';
	html +=
	'<a href="gallery/index.html" id="buttonGallery">' +
		'<img src="images/blank.gif" alt="Go to painting gallery">' +
	'</a>' +
	'<a href="biography/index.html" id="buttonBiography">' +
		'<img src="images/blank.gif" alt="Read biographical information about Myles Pinkney">' +
	'</a>' +
	'<a href="faq/index.html" id="buttonFaq">' +
		'<img src="images/blank.gif" alt="See the frequently asked questions about Myles Pinkney">' +
	'</a>';
	
	//
	// Create 'Contact' menu
	//
	var menu = new Menu('contactMenu');
	menu.setImageClassName('homeContactMenu');
	menu.setBlankImage('images/blank.gif');
	menu.setXOffset(23);
	menu.addItem('CONTACT US', 'contact/contactUs.html', 'contactMenuListItem');
	menu.addItem('JOIN OUR MAILING LIST', 'contact/joinOurMailingList.html', 'contactMenuListItem');
	html += menu.getHtml();
	
	html +=
	'<a href="search/index.html" id="buttonSearch">' +
		'<img src="images/blank.gif" alt="Search MylesPinkney.com">' +
	'</a>' +
	'<a href="siteMap/index.html" id="buttonSiteMap">' +
		'<img src="images/blank.gif" alt="Go to the site map">' +
	'</a>';

	//
	// Create 'Shopping' menu
	//
	var menu = new Menu('shoppingMenu');
	menu.setImageClassName('homeShoppingMenu');
	menu.setBlankImage('images/blank.gif');
	menu.setXOffset(25);
	menu.addItem('CART', 'shopping/index.html', 'shoppingMenuListItem');
	menu.addItem('SHIPPING&nbsp;INFORMATION', 'shopping/shippingInformation.html', 'shoppingMenuListItem');
	menu.addItem('RETURN&nbsp;POLICY', 'shopping/returnPolicy.html', 'shoppingMenuListItem');
	html += menu.getHtml();

	document.write(html);
}

function displaySecondaryNavigationBar()
{
	var html = '';
	html +=
	'<a href="../index.html" id="buttonHome">' +
		'<img src="../images/blank.gif" alt="Go to home page">' +
	'</a>' +
	'<a href="../gallery/index.html" id="buttonGallery">' +
		'<img src="../images/blank.gif" alt="Go to painting gallery">' +
	'</a>' +
	'<a href="../biography/index.html" id="buttonBiography">' +
		'<img src="../images/blank.gif" alt="Read biographical information about Myles Pinkney">' +
	'</a>' +
	'<a href="../faq/index.html" id="buttonFaq">' +
		'<img src="../images/blank.gif" alt="See the frequently asked questions about Myles Pinkney">' +
	'</a>';
	
	//
	// Create 'Contact' menu
	//
	var menu = new Menu('contactMenu');
	menu.setImageClassName('secondaryContactMenu');
	menu.setXOffset(22);
	menu.addItem('CONTACT US', '../contact/contactUs.html', 'contactMenuListItem');
	menu.addItem('JOIN OUR MAILING LIST', '../contact/joinOurMailingList.html', 'contactMenuListItem');
	html += menu.getHtml();
	
	html +=
	'<a href="../search/index.html" id="buttonSearch">' +
		'<img src="../images/blank.gif" alt="Search MylesPinkney.com">' +
	'</a>' +
	'<a href="../siteMap/index.html" id="buttonSiteMap">' +
		'<img src="../images/blank.gif" alt="Go to the site map">' +
	'</a>';

	//
	// Create 'Shopping' menu
	//
	var menu = new Menu('shoppingMenu');
	menu.setImageClassName('secondaryShoppingMenu');
	menu.setXOffset(20);
	menu.addItem('CART', '../shopping/index.html', 'shoppingMenuListItem');
	menu.addItem('SHIPPING&nbsp;INFORMATION', '../shopping/shippingInformation.html', 'shoppingMenuListItem');
	menu.addItem('RETURN&nbsp;POLICY', '../shopping/returnPolicy.html', 'shoppingMenuListItem');
	html += menu.getHtml();

	document.write(html);
}
