// JavaScript Document

function animate() {
	$(".roll").mouseover(function(event) { 
		im=$(this).find('img');
		im.attr('src',im.attr('src').replace('_off','_on'));
		event.stopImmediatePropagation();
		return false;
	});
	
	$(".roll").mouseout(function(event) { 
		im=$(this).find('img');
		im.attr('src',im.attr('src').replace('_on','_off'));
		event.stopImmediatePropagation();
		return false;
	});
	
}

jQuery(animate);