function menuOver(obj)
{
	obj.style.color = '#ff0000';
	obj.style.borderColor = '#ff0000';
	
	if(document.all)
		obj.style.cursor = 'hand';
	else
		obj.style.cursor = 'pointer';
}

function menuOut(obj)
{
	obj.style.color = '#66ff66';
	obj.style.borderColor = '#66ff66';
}

document.write("<table>\
			<tr>\
				<td onMouseOver=\"menuOver(this)\" onMouseOut=\"menuOut(this);\" onClick=\"window.location='darrenBio.html';\"id=\"mainMenuCell\">BIO</td>\
			</tr>\
			<tr>\
				<td onMouseOver=\"menuOver(this)\" onMouseOut=\"menuOut(this);\" id=\"mainMenuCell\" onClick=\"window.location='pictures.html';\">IMAGES</td>\
			</tr>\
			<tr>\
				<td onMouseOver=\"menuOver(this)\" onMouseOut=\"menuOut(this);\" id=\"mainMenuCell\" onClick=\"window.location='gigs3.html';\">GIGS</td>\
			</tr>\
			<tr>\
				<td onMouseOver=\"menuOver(this)\" onMouseOut=\"menuOut(this);\" id=\"mainMenuCell\" onClick=\"window.location='setList.html';\">SONGS</td>\
			</tr>\
			<tr>\
				<td onMouseOver=\"menuOver(this)\" onMouseOut=\"menuOut(this);\" id=\"mainMenuCell\" onClick=\"window.location='sounds.html';\">SOUND CLIPS</td>\
			</tr>\
			<tr>\
				<td onMouseOver=\"menuOver(this)\" onMouseOut=\"menuOut(this);\" id=\"mainMenuCell\" onClick=\"window.location='contactUs.html';\">CONTACT US</td>\
			</tr>\
			<tr>\
				<td onMouseOver=\"menuOver(this)\" onMouseOut=\"menuOut(this);\" id=\"mainMenuCell\" onClick=\"window.location='news.html';\">NEWS</td>\
			</tr>\
				<td onMouseOver=\"menuOver(this)\" onMouseOut=\"menuOut(this);\" id=\"mainMenuCell\" onClick=\"window.location='FourPocket.htm';\">LINKS</td>\
			</tr>\
			<tr>\
				<td onMouseOver=\"menuOver(this)\" onMouseOut=\"menuOut(this);\" id=\"mainMenuCell\" onClick=\"window.location='archive.html';\">ARCHIVE</td>\
			</tr>\
			<tr>\
			</table>");

