function SetMenuColors()
{
	var path = document.URL; 
	//alert(path);
	if (path.indexOf("advice")>= 0)
	{
		document.getElementById('menubar').rows[0].cells[5].bgColor="#FFFFFF";
	}
	

	else if (path.indexOf("guidelines")>= 0)
	{
		document.getElementById('menubar').rows[0].cells[4].bgColor="#FFFFFF";
	}
	else if  (path.indexOf("archives") >= 0 || path.indexOf("aug2004") >= 0 || path.indexOf("vol2issue1") >= 0
			 || path.indexOf("vol2issue2") >= 0 || path.indexOf("june2004") >= 0 || path.indexOf("vol1issue1") >= 0 )
	{
		document.getElementById('menubar').rows[0].cells[1].bgColor="#FFFFFF";
	}

	else if  (path.indexOf("articles/08_2004") >= 0)
	{
		document.getElementById('menubar').rows[0].cells[1].bgColor="#FFFFFF";
		document.getElementById('menubar').rows[0].cells[1].innerHTML="<p align='center'><a href='../../aug2004.htm' class='menu'>August 2004</a></p>";
	}
	else if ( path.indexOf("articles/03_2004") >= 0 )
	{
		document.getElementById('menubar').rows[0].cells[1].bgColor="#FFFFFF";
		document.getElementById('menubar').rows[0].cells[1].innerHTML="<p align='center'><a href='../../vol2issue1.htm' class='menu'>March 2004</a></p>";
	}
	else if (path.indexOf("articles/04_2004") >= 0)
	{
		document.getElementById('menubar').rows[0].cells[1].bgColor="#FFFFFF";
		document.getElementById('menubar').rows[0].cells[1].innerHTML="<p align='center'><a href='../../vol2issue2.htm' class='menu'>April 2004</a></p>";
	}
	else if (path.indexOf("articles/06_2004") >= 0)
	{
		document.getElementById('menubar').rows[0].cells[1].bgColor="#FFFFFF";
		document.getElementById('menubar').rows[0].cells[1].innerHTML="<p align='center'><a href='../../june2004.htm' class='menu'>June 2004</a></p>";
	}
	else if (path.indexOf("articles/10_2003") >= 0)
	{
		document.getElementById('menubar').rows[0].cells[1].bgColor="#FFFFFF";
		document.getElementById('menubar').rows[0].cells[1].innerHTML="<p align='center'><a href='../../vol1issue1.htm' class='menu'>October 2003</a></p>";
	}	
	else if (path.indexOf("staff")>= 0)
	{
		document.getElementById('menubar').rows[0].cells[3].bgColor="#FFFFFF";
	}
	else if (path.indexOf("event")>= 0)
	{
		document.getElementById('menubar').rows[0].cells[2].bgColor="#FFFFFF";
	}



	else if (path.indexOf("ads") == -1)
	{
		document.getElementById('menubar').rows[0].cells[0].bgColor="#FFFFFF";
	}
	
      var rowsarray=document.getElementById('main_table').rows;
	var cellsarray=rowsarray[1].cells;
	//cellsarray[0].innerHTML="<font size='3'><b>On-line version of the freelancer featuring arts, humanities, and culture of Philadelphia<img border='0' src='images/paw.gif' align='bottom' width='21' height='18'> Volume 2 Issue 3</b></font>"
	//var headertext;
	//alert(path);
	//alert(path.indexOf("articles/03_2004"));
	
	if (path.indexOf("articles/10_2003") >= 0 || path.indexOf("vol1issue1") >= 0 )
	{
		//alert("articles/10_2003");
		cellsarray[0].innerHTML = "<p align='center'><font size='3'><b>On-line version of the freelancer featuring arts, humanities, and culture of Philadelphia <img border='0' src='http://home.comcast.net/~philadelphiawriters/images/paw.gif' align='bottom' width='21' height='18'> Volume 1 Issue 1</b></font>";
	}
	else if (path.indexOf("articles/03_2004") >= 0 || path.indexOf("vol2issue1") >= 0 )
	{
		cellsarray[0].innerHTML = "<p align='center'><font size='3'><b>On-line version of the freelancer featuring arts, humanities, and culture of Philadelphia <img border='0' src='http://home.comcast.net/~philadelphiawriters/images/paw.gif' align='bottom' width='21' height='18'> Volume 2 Issue 1</b></font>";
	}
	else if (path.indexOf("articles/04_2004") >= 0 || path.indexOf("vol2issue2") >= 0 )
	{
		cellsarray[0].innerHTML = "<p align='center'><font size='3'><b>On-line version of the freelancer featuring arts, humanities, and culture of Philadelphia <img border='0' src='http://home.comcast.net/~philadelphiawriters/images/paw.gif' align='bottom' width='21' height='18'> Volume 2 Issue 2</b></font>";
	}
	else if (path.indexOf("articles/06_2004") >= 0 || path.indexOf("june2004") >= 0 )
	{
		cellsarray[0].innerHTML = "<p align='center'><font size='3'><b>On-line version of the freelancer featuring arts, humanities, and culture of Philadelphia <img border='0' src='http://home.comcast.net/~philadelphiawriters/images/paw.gif' align='bottom' width='21' height='18'> Volume 2 Issue 3</b></font>";
	}
	else if (path.indexOf("articles/08_2004") >= 0 || path.indexOf("aug2004") >= 0 )
	{
		cellsarray[0].innerHTML = "<p align='center'><font size='3'><b>On-line version of the freelancer featuring arts, humanities, and culture of Philadelphia <img border='0' src='http://home.comcast.net/~philadelphiawriters/images/paw.gif' align='bottom' width='21' height='18'> Volume 2 Issue 4</b></font>";	
	}
	else if (path.indexOf("articles/10_2004") >= 0 || path.indexOf("index") >= 0 || path.indexOf("oct2004") >= 0 )
	{
		cellsarray[0].innerHTML = "<p align='center'><font size='3'><b>On-line version of the freelancer featuring arts, humanities, and culture of Philadelphia <img border='0' src='http://home.comcast.net/~philadelphiawriters/images/paw.gif' align='bottom' width='21' height='18'> Volume 2 Issue 5</b></font>";
	}
	 else
	{
		cellsarray[0].innerHTML= "<p align='center'><font size='3'><b>On-line version of the freelancer featuring arts, humanities, and culture of Philadelphia</b></font>";
	}
	//cellsarray[0].innerHTML = headertext;
	
}

SetMenuColors();