$(document).ready(function() {
   $("img").hover(function() {
     $(this).addClass("jqueryHover");
   },function(){
     $(this).removeClass("jqueryHover");
   });
 });