function homeOver()
{
	homeExp = "A welcome and introduction to Holts Cycles.";
	document.getElementById('write').innerHTML = homeExp;
}

function homeOut()
{
	homeExp = " ";
	document.getElementById('write').innerHTML = homeExp;
}

function bikesOver()
{
	homeExp = "A description on the bikes available.";
	document.getElementById('write').innerHTML = homeExp;
}

function bikesOut()
{
	homeExp = " ";
	document.getElementById('write').innerHTML = homeExp;
}

function accessOver()
{
	homeExp = "A description on the accessories available.";
	document.getElementById('write').innerHTML = homeExp;
}

function accessOut()
{
	homeExp = " ";
	document.getElementById('write').innerHTML = homeExp;
}

function contactOver()
{
	homeExp = "Get our contact details.";
	document.getElementById('write').innerHTML = homeExp;
}

function contactOut()
{
	homeExp = " ";
	document.getElementById('write').innerHTML = homeExp;
}