

//needs previous include of ajax.js

function go(page, title)
{
	document.all.header.innerHTML = "<span style='color: #6D5400'>"+title+"</span><br><div class='red' style='margin-top: -13px;'>"+title+"</div>";
	document.all.content.innerHTML = AjaxRequest("db/"+page, "GET");
}

//Beginning
go("home", "Home");



function chg(img, suffix)
{
	document[img].src = 'data/' + img + suffix + '.gif';
}

