function LoadNav()
{
	var myDiv = document.getElementById('nav');
	var mystr = '';
	
	mystr += '<ul id="navbar">';
	mystr += '<li><a href="http://students.emory.edu/kappsigma/index.html" id="home"></a></li>';
	mystr += '<li><a href="http://students.emory.edu/kappsigma/ourchapter.html" id="chapter"></a></li>';
	mystr += '<li><a href="http://students.emory.edu/kappsigma/news.html" id="newsy"></a></li>';
	mystr += '<li><a href="http://students.emory.edu/kappsigma/leadership.html" id="leadership"></a></li>';
	mystr += '<li><a href="http://students.emory.edu/kappsigma/photogallery.html" id="events"></a></li>';
	mystr += '<li><a href="http://students.emory.edu/kappsigma/brothers.html" id="brothers"></a></li>';
	mystr += '<li><a href="http://students.emory.edu/kappsigma/newsletter.html" id="newsletter"></a></li>';
	mystr += '<li><a href="http://students.emory.edu/kappsigma/calendar.php" id="calendar"></a></li>';
	mystr += '</ul>';
	myDiv.innerHTML = mystr;
	
	myDiv = document.getElementById('botnav');
	mystr = '';
	mystr += '<a href="http://students.emory.edu/kappsigma/index.html">Home</a> | <a href="http://students.emory.edu/kappsigma/ourchapter.html">Our Chapter</a> | ';
	mystr += '<a href="http://students.emory.edu/kappsigma/news.html">News</a> | <a href="http://students.emory.edu/kappsigma/leadership.html">Leadership</a> | ';
	mystr += '<a href="http://students.emory.edu/kappsigma/photogallery.html">Events</a> | <a href="http://students.emory.edu/kappsigma/brothers.html">Brothers</a> | ';
	mystr += '<a href="http://students.emory.edu/kappsigma/newsletter.html">Newsletter</a> | ';
	mystr += '<a href="http://students.emory.edu/kappsigma/calendar.php">Calendar</a> | <a href="http://students.emory.edu/kappsigma/alumni.html">Alumni</a> | ';
	mystr += '<a href="http://students.emory.edu/kappsigma/links.html">Links</a> | <a href="http://students.emory.edu/kappsigma/contactus.html">Contact Us</a>';
	
	myDiv.innerHTML = mystr;
	
	myDiv = document.getElementById('webmaster');
	mystr = '';
	mystr += 'Webmaster: <a href="mailto:';
	mystr += 'iotroaoi@gmail.com';
	mystr += '">';
	mystr += 'Phillip Gonzales';
	mystr += '</a>';
	
	myDiv.innerHTML = mystr;
	
	myDiv = document.getElementById('index');
	var mystr = '';
	
	mystr += '<table width=100% height=100% background="Images/parch.png" cellpadding=40px>';
	mystr += '<tr><td><p><font size=-1 face="Arial"><i><b>"I challenge you, my brothers, to never accept the status quo and to always strive for something better<br>';
	mystr += '	– for this is what defines us as members of the Kappa Sigma Alpha Chapter at Emory University."</p>';
	mystr += '	<p><ul>- Founding Father, Grand Master Andrew Foster</font></b></i></ul></p></td></tr></table>';
	
	myDiv.innerHTML = mystr;
}