<CENTER>
<style>
<!--
/*change the color name below to the color you want initially applied to the button. ie:blue*/
.initial2{font-weight:bold;background-color:lime}
//-->
</style>
<script>
<!--
/*
Rollover background-color button Script-
© Dynamic Drive (www.dynamicdrive.com)
For full source code, installation instructions,
100's more DHTML scripts, and Terms Of
Use, visit dynamicdrive.com
*/
function change(color){
var el=event.srcElement
if (el.tagName=="INPUT"&&el.type=="button")
event.srcElement.style.backgroundColor=color
}
function jumpto2(url){
window.location=url
}
//-->
</script>
<form onMouseover="change('red')" onMouseout="change('lime')">
<input type="button" value="Link 1 " class="initial2" onClick="jumpto2('http://')">
<input type="button" value="Link 2 " class="initial2" onClick="jumpto2('http://')">
<input type="button" value="Link 3 " class="initial2" onClick="jumpto2('http://')">
<input type="button" value="Link 4 " class="initial2" onClick="jumpto2('http://')">
</form>
</center>