<!--

	function rollOver(elem, clr)
	{
		elem.style.backgroundColor = clr;
		elem.style.cursor = 'hand';
	}
	
	function rollOut(elem, clr)
	{
		elem.style.backgroundColor = clr;
	}
	
	function rollDown(elem, clr)
	{
		elem.style.backgroundColor = clr;
	}
	
	function rollUp(path)
	{
		location.href = path;
	}

	var urlAddress = "http://www.jacobball.com";
	var pageName = "jacobball.com - Welcome to our World.";
	
	function addToFavorites()
	{
		if (window.external)
		{
			window.external.AddFavorite(urlAddress,pageName)
		}
		else
		{ 
			alert("Sorry! Your browser doesn't support this function.");
		}
	}

  function MM_openBrWindow(theURL,winName,features)
	{
    window.open(theURL,winName,features);
  }

// -->