Currently, I have been using the following code to switch between images. However, what I actually want to do is change the image when hovering over the title link of the image.
onmouseover="this.src='Images/img.png'" onmouseout="this.src='Images/img2.png'"
For instance, when someone hovers over the title link such as 'Chicken Menu', the image below it will transition from img.png to img2.png. In this scenario, img.png represents the front page image and img2.png showcases a list of menu items.