﻿// JavaScript Document

function showText(){
	
	document.write(
	
    'navigation: '+	
    '[ <a href="index.htm"> home </a> ] '+
    '[ <a href="projects.htm"> projects </a> ] '+
    '[ <a href="resume.pdf"> résumé </a> ] '+
    '[ <a href="about.htm"> about </a> ] '+
    '[ <a href="contact.htm"> contact </a> ]'

    );

}