Quote
<html>
<head>
<title>Кнопка, меняющая фон при наведении курсора</title>
</head>
<body>
<script>
<!--
function change2(image){
var el=event.srcElement
if (el.tagName=="INPUT"&&el.type=="button")
event.srcElement.style.backgroundImage="url"+"('"+image+"')"
}
function jumpto2(url){
window.location='../index.shtml'
}
//-->
</script>
<form onMouseover="change2('../img/bg-g.gif')" onMouseout="change2('../img/bg-b.gif')">
<input type="button" value=" 1 " class="initial" onClick="jumpto2('http://scriptic.ru')" style="background:url(../img/bg-b.gif);border-color: #000000;">
<input type="button" value=" 2 " class="initial" onClick="jumpto2('http://scriptic.ru')" style="background:url(../img/bg-b.gif);border-color: #000000;">
<input type="button" value=" 3 " class="initial" onClick="jumpto2('http://scriptic.ru')" style="background:url(../img/bg-b.gif);border-color: #000000;">
</form>
</body>
</html>