
function focusMenu()
{
	var href = location.href;
	
	var list;
	
	list = document.getElementsByTagName("A");
	
	var i, s, p, words;
	
	for (i = 0; i < list.length; i++)
	{
		
		if (href.indexOf(list[i].href) != -1 && list[i].href != "http://www.sunnet.us/")
		{
			
			list[i].style.color = "#7E0F10";
			
		}
	}
}

function fixImgAlt()
{
	
	var list = document.getElementsByTagName("IMG");
	var i;
	
	for (i = 0; i < list.length; i++)
	  list[i].title = list[i].alt;
}

focusMenu();


