function animate_button(name,title,href,img1,img2,width,height,alt,border,target)
{
//	alert(name);
	document.write("<a href='" + href + "'  target='" + target + "'>");
	document.write("<img name='button_" + name + "' src='" + img1 + "' width='" + width + "' height='" + height + "' alt='" + alt + "' border='" + border + "'  ");
	document.write("onmouseover=animate_button_change_img(button_"+name+",'"+img2+"') ");
	document.write("onmouseout=animate_button_change_img(button_"+name+",'"+img1+"') ");
	document.write(">");
	document.write("</a>");
}

function animate_button_change_img(button,img)
{
//	alert(button.src);
	button.src = img;
//	alert(button.src);
}
