Simple 3 Stage Image Based Buttons
http://callumcarolan.co.uk/yellow_button.html
<style type=text/css>
.button
{
height: 44px;
width: 94px;
background: url('yellow_button.png') no-repeat top;
cursor: pointer;
/*BELOW IS FOR DISPLAY PURPOSES ONLY*/
margin-right: 10px;
float: left;
/*ABOVE IS FOR DISPLAY PURPOSES ONLY*/
}
.button:hover { background-position: center; }
.button:active { background-position: bottom; }
</style>
