// JavaScript Document
function changeHint(newhint)
{
var head3 = document.getElementById("head3");
head3.firstChild.nodeValue=newhint;
}
function changeHintBack()
{
var head3 = document.getElementById("head3");
head3.firstChild.nodeValue="The annual Halesworth Thoroughfair";
}
function changeHint2(newhint)
{
var head3 = document.getElementById("head1");
head3.firstChild.nodeValue=newhint;
}
function changeHintBack2()
{
var head3 = document.getElementById("head1");
head3.firstChild.nodeValue="Mist on the Blyth Valley";
}