Here's the deal:
I'm trying to use 3 buttons to rotate an image on the same page:
BUTTON 1 BUTTON 2 BUTTON 3
<image1, 2, or 3 based on the click.>
DO I need to do this in javascript?
<SCRIPT LANGUAGE="JavaScript">
var images = new Array();
images[0] = new Image();
images[0].src = 'click.jpg';
images[1] = new Image();
images[1].src = 'footballa.jpg';
images[2] = new Image();
images[2].src = 'footballb.jpg';
images[3] = new Image();
images[3].src = 'footballc.jpg';
</script>
I'm lost...