Converting onmouseover/onmouseout to jQuery
I'm working on a couple of pages that look like this:
As the visitor mouses over the month name, the image to the right is supposed to change to show the cover of that month's magazine issue.
The onmouseover/onmouseout code has been working fine for months, but I recently added a couple new JS elements to the page, and now when the visit stops hovering over Sep/Oct, the image doesn't change.
I'm thinking that the way to fix this is by converting this action to jQuery, which is loaded on the page anyway, but I'm struggling to get a concise expression of what I want to happen. That is, I can do it by brute force with dozens of lines of code, but there must be a better way.
Any help will be appreciated.
Thanks.