﻿function ChangeStateImage(id,state)
{
	var image = document.getElementById(id)
	if (state == "1")
		image.src = "library/images/button_" + id + "_over.gif";
	else
		image.src = "library/images/button_" + id + ".gif";
}
		
	