$(document).ready(function() {
$('.boton').mouseover(function() {
var nombre=$(this).attr("name");
$(this).attr("src", "images/roll/"+nombre+".gif");
});
$('.boton').mouseout(function() {
var nombre=$(this).attr("name");
$(this).attr("src", "images/normal/"+nombre+".gif");
});
});

