// JavaScript Document
function butOver(id)
	{
		document.getElementById(id).src = "images/arrow_big.gif";
	}

function butOut(id)
	{
		document.getElementById(id).src = "images/arrow_small.gif";
	}