
function copyright() {
	return '<div id="copyright">&copy; 2006 Vecsey</div>';
	}

function topleft_logo() {

	//return '<H1><IMG SRC="images/SUSAN-VECSEY-small.gif" WIDTH="468" HEIGHT="68"></H1>';

	return '<H1><IMG SRC="images/susan vecsey title text4.jpg" WIDTH="396" HEIGHT="59"></H1>';

	}

function div_wrap(s,r) {
	return '<DIV ID="' + s + '">' + r + '</DIV>';
	}

function link(title, url) {
	return '<A HREF="' + url + '">' + title + '</A>';
	}

function link_set(items,i) {

	var count;
	var str = '';

	for (count = 0; count < items.length; count++) {

		str += link(items[count].title, items[count].match != i ? items[count].url : '#');

		}

	return str;

	}

function header_nav(i) {

	var original_items = new Array(
	{ title:'Home', match:'home', url:'home.html' }
	,{ title:'Bio', match:'bio', url:'bio.html' }
	,{ title:'Recent Work', match:'recent', url:'recent.html' }
	,{ title:'Contact', match:'contact', url:'contact.html' }
	);

	var items_Nov24_2006 = new Array(
	{ title:'Paintings', match:'home', url:'home.html' }
	,{ title:'Photography', match:'recent', url:'recent.html' }
	,{ title:'Prints', match:'prints', url:'prints.html' } 	
	,{ title:'Bio', match:'bio', url:'bio.html' } 	
	);

	var items_Jan5_2007 = new Array(
	{ title:'Paintings', match:'home', url:'home.html' }
	,{ title:'Photography', match:'recent', url:'recent.html' }
	,{ title:'Prints', match:'prints', url:'prints.html' } 	
	,{ title:'Bio', match:'bio', url:'bio.html' } 	
	,{ title:'Press', match:'press', url:'press.html' } 
	,{ title:'Links', match:'links', url:'links.html' } 
	,{ title:'Contact', match:'contact', url:'contact.html' } 	
	);

	return div_wrap("nav", link_set(items_Jan5_2007,i) );

	}

