// JavaScript Document

function change(id)

{

	//alert(id);

	document.getElementById(id).style.backgroundImage="url(img/menu_over.png)";

	//document.getElementById(id).style.background-repeat="repeat-x;"

}

function changeout(id)

{

	document.getElementById(id).style.backgroundImage="";

}
