
jQuery(document).ready(function() {
								
$(".roll").hover(
function()
{
this.src = this.src.replace(".jpg",".gif");
},
function()
{
this.src = this.src.replace(".gif",".jpg");
}
);



});


