
function changeImage() {
if (document.getElementById) {
document.getElementById("about").src="images/but-about_f2.jpg";
}
else if (document.all) {
document.all["about"].src="images/but-about_f2.jpg";
}
else if (document.layers) {
document.layers["about"].src="images/but-about_f2.jpg";
}
}
