function generateMainNavigation() {
	$j('#header').html(
	'<h1 id="logo"><a href="./index.html">Lakeway Technologies</h1>' +	
		'<ul id="navbar">' +
		'<li class="contact_info"><a href="mailto:info@lakeway-tech.com?subject=Information%20request">info@lakeway-tech.com</a></li>' +
			'<li class="contact_info" id="phone">408-518-0489</li>' +
			'<li id="about_link"><a href="./aboutus.html">About us</a></li>' +
			'<li id="frontier_link"><a href="./frontier.html">Frontier</a></li>' +
			'<li id="home_link"><a href="./index.html">Home</a></li>' + 
		'</ul>'	
	);
}

function getNumQuotes() {
	return 3;
}
			

function getQuote(index) {
	index = index % getNumQuotes();
	
	quote0 = '<p id="quote"><span class="quote_mark left_quote">&#8220;</span>Lakeway Frontier is a remarkable application...it’s aligned our organization.<span class="quote_mark right_quote">&#8221;</span></p>' +
	'<p id="attribution">&#151; <span class="speaker">Frank Helle</span>, CEO, <span class="company">Axian, Inc.</span></p>';
	
	quote1 = '<p id="quote"><span class="quote_mark left_quote">&#8220;</span>It’s reduced our data management effort from six people to one.<span class="quote_mark right_quote">&#8221;</span></p>' +
	'<p id="attribution">&#151; <span class="speaker">Derek Wolfe</span>, Production Director, <span class="company">Axian, Inc.</span></p>';
	
	quote2 = '<p id="quote"><span class="quote_mark left_quote">&#8220;</span>It’s replaced the spreadsheet hell that I have been in.<span class="quote_mark right_quote">&#8221;</span></p>' +
	'<p id="attribution">&#151; <span class="speaker">Matt Johnston</span>, Project Manager, <span class="company">Axian, Inc.</span></p>';
	
	quotes = [quote0, quote1, quote2];
	return quotes[index];
}