This tutorial will show you a quick and easy way, to add a simple, CSS, image rollover, in two easy steps.
In the first step we will need to add two images. The first will be your button and the second should be the button hover state. This would look something like this, in your HTML code:
<img alt="Rollover Images" src="/images/sampledata/button1.png" />
<img alt="Rollover Images" src="/images/sampledata/button1_hover.png" />
The next step will be to wrap an img_rollover div style around the two images which will give you the rollover effect.
<div class="img_rollover">
<img alt="Rollover Images" src="/images/sampledata/button1.png" />
<img alt="Rollover Images" src="/images/sampledata/button1_hover.png" />
</div>
Which would give you this, when outputted, in the editor's WYSIWYG view.