function msg(m) {window.status=m;return true;}
function msghome() {return msg("to the Cushy home page...");}
function getUrlBase()
{
	return location.protocol == "file:" ? "file://d:/websites/cushyww/www" : "";
}

var nNaviDispCount = 0;

function dispNaviBar()
{
	var buttons =
	[
	{ C:"#660000", L:"HOME",		U:"/index.htm",			M:"to the Cushy homepage..."},
	{ C:"#663333", L:"STUDIOs",		U:"/html/studio.htm",	M:"to the Cushy Studios..."},
	{ C:"#993300", L:"12 BAR CLUB",	U:"/html/12bar.htm",	M:"to the 12 Bar Club..."},
	{ C:"#660033", L:"GIGs",		U:"/html/gigs.htm",		M:"to the Cushy Gigs pages..."},
	{ C:"#666633", L:"FLYERs",		U:"/html/flyer.htm",	M:"to the Cushy Flyer page..."},
	{ C:"#336666", L:"EMAIL",		U:"mailto:contact@cushyproductions.com",M:"send an Email to Cushy..."},
	{ C:"#003366", L:"LYRICs",		U:"/html/lyrics.htm",	M:"to the Cushy Lyrics pages..."},
	{ C:"#999999", L:"RHATIGAN",	U:"/html/rhatigan.htm",	M:"to Rhatigan..."},
	{ C:"#663300", L:"LINKs",		U:"/html/links.htm",	M:"to the Cushy links..."}
	];
	var len = buttons.length;
	var UrlBase = getUrlBase();

	if (nNaviDispCount==0)
	{
//		document.write("<P ALIGN=\"CENTER\">CUSHY PRODUCTIONs</P>");
	}
	else
	{
//		document.write("<HR>");
	}


	document.write("<P><CENTER><TABLE BORDER=\"0\" CELLSPACING=\"5\" CELLPADDING=\"5\"><TR>");
	for (i=0;i<len;i++)
	{
		document.write(
			"<TH CLASS=\"s\" BGCOLOR=\""+buttons[i].C+"\">"+
			"<FONT FACE=\"Verdana\">"+
			"<A HREF=\""+UrlBase+buttons[i].U+"\""+
			" onMouseOver=\"return msg('"+buttons[i].M+"');\""+
			" onMouseOut=\"return msg(' ');\" onClick=\"return msg(' ');\""+
			">"+buttons[i].L+"</A>"+
			"</FONT>"+
			"</TH>"
			);
	}
	document.write("</TR></TABLE></CENTER></P>");
	
	if (nNaviDispCount==0)
	{
//		document.write("<HR>");
	}
	nNaviDispCount++;
}