jq(document).ready(function(){
    jq(".roll").mouseover(function() {
        imgsrc = jq(this).attr("src");
        matches = imgsrc.match(/_over/);
        if (!matches) {
          imgsrcON = imgsrc.replace(/.png/ig, "_over.png"); 
          jq(this).attr("src", imgsrcON);
          }
    });
    jq(".roll").mouseout(function() {
        jq(this).attr("src", imgsrc);
        
    });
}); 

