$(function(){ //preload the 2nd image for rollover, bye bye lag. originalsColor = new Image(); originalsColor.src = "http://sqwires.com.s52733.gridserver.com/wp-content/themes/designagency/images/originals-color.png"; $(".originals").hover(onOver, onOut); })//end onload function function onOver() { //alert("onOver function fired.") $(this).attr('src', 'http://sqwires.com.s52733.gridserver.com/wp-content/themes/designagency/images/originals-color.png'); }//end onOver function onOut() { //alert("onOut function fired.") $(this).attr('src', 'http://sqwires.com.s52733.gridserver.com/wp-content/themes/designagency/images/originals-BW.png'); }