<html>
<head>
<title>Lijpe button</title>
<style>
.thisclass{background-color:#009900}
</style>
<script language="javascript">
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>
</head>
<body>
<form onMouseOver="change('#FFFF00')" onMouseOut="change('#009900')">
<input type="button" name="Button" class="thisclass" value="Scriptkiddies" onMouseOver="this.style.color='#FFFFFF'" onMouseOut="this.style.color='#FFFFFF'" onMouseDown="this.style.color='#FFFFFF'" style="color:#FFFFFF; font-family:Georgia; font-weight:bold; font-size:14px;" onClick="jumpto2('http://www.scriptkiddies.nl')">;
</form>
</body>
</html>