I have a few images and their rollover images. Using jQuery, I want to show/hide the rollover image when the onmousemove/onmouseout event happen. All my image names follow t
/* Teaser image swap function */ $('img.swap').hover(function () { this.src = '/images/signup_big_hover.png'; }, function () { this.src = '/images/signup_big.png'; });