jQuery(function($) { 
$(function() {
	$('img.hover').hover(function() {
		$(this).attr('src', $(this).attr('src').replace( /_orig/i, '_rollover' ));
	}, function() {
		$(this).attr('src', $(this).attr('src').replace( /_rollover/i, '_orig' ));
	});
});
});