If I were you I'd use CSS to handle those hovers
a{background: transparent url(left.png) no-repeat;}
a:hover{background: transparent url(left-hover.png) no-repeat;}
To lighten the requests to the server, you could combine the images into 1 file and use positioning to move the image based on :hover
Hope that helps.