// JavaScript Document

function renderTextHTML()
{

	var strHTML = '';

	strHTML += '<div id="quickmenunavmenu">';
	strHTML += '<a href="default.htm">Home</a>';
	strHTML += '<a href="STAFF.html">Church&nbsp;Staff</a>';
	strHTML += '<a href="WORSHIP.html">Worship</a>';
	strHTML += '<a href="SUNDAYSCHOOL.html">Sunday&nbsp;School</a>';
	strHTML += '<a href="MUSIC.html">Music</a>';
	strHTML += '<a href="KIDS.html">Children\'s&nbsp;Ministries</a>';
	strHTML += '<a href="YOUTH.html">Jr.&nbsp;&&nbsp;Sr.&nbsp;High&nbsp;Youth</a>';
	strHTML += '<a href="MISSIONS.html">Mission&nbsp;&&nbsp;Ministries</a>';
	strHTML += '<a href="NEWS.html">News</a>';
	strHTML += '<a href="DIRECTIONS.html">Directions</a>';
	strHTML += '<a href="PHOTOGALLERY.html">Photo&nbsp;Gallery</a>';
	strHTML += '</div>';
		
	return strHTML;
}

function textMouseOn(textObj, newColor, mouseoverBold, mouseoverUnderline, mouseoverItalic)
{ 
	if(newColor)
	{
		textObj.style.color=newColor; 
	}
	if(mouseoverBold=='true')
	{
		textObj.style.fontWeight='bold';
	}
	else
	{
		textObj.style.fontWeight='normal';
	}
	if(mouseoverUnderline=='true')
	{
		textObj.style.textDecoration='underline';
	}
	else
	{
		textObj.style.textDecoration='none';
	}
	if(mouseoverItalic=='true')
	{
		textObj.style.fontStyle='italic';
	}
	else
	{
		textObj.style.fontStyle='normal';
	}
}  

function textMouseOff(textObj, newColor, bold, underline, italic)
{ 
	textObj.style.color=newColor; 
	if(bold=='true')
	{
		textObj.style.fontWeight='bold';
	}
	else
	{
		textObj.style.fontWeight='normal';
	}
	if(underline=='true')
	{
		textObj.style.textDecoration='underline';
	}
	else
	{
		textObj.style.textDecoration='none';
	}
	if(italic=='true')
	{
		textObj.style.fontStyle='italic';
	}
	else
	{
		textObj.style.fontStyle='normal';
	}
}


document.write(renderTextHTML());
