Hauptmenü
Bilder auf den Server in das Verzeichnis "images" kopieren.
Example:
demo_img2.jpg
demo_img3.jpg
Demo:
Code für das HTML-
<script type="text/javascript">
function changeIMG(what, width, height) {
document.getElementById(what).width = width;
document.getElementById(what).height = height;
}
</script>
<img id='bild2' src="images/demo_img2.jpg" onMouseOver="changeIMG('bild2','320','235');" onMouseOut="changeIMG('bild2','190','140');" height='140' width='190'>
<img id='bild3' src="images/demo_img3.jpg" onMouseOver="changeIMG('bild3','320','235');" onMouseOut="changeIMG('bild3','190','140');" height='140' width='190'>