$(document).ready(function() {
	$('.menu img').each(function() { 
		$(this).hover(
			function() {
				$(this).attr('src', 'images/'+ $(this).attr('id') +'-roll.jpg');
			},
			function() {
				$(this).attr('src', 'images/'+ $(this).attr('id') +'.jpg');
			}
		);
	});
});
