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