function rollover(){
	$('img').each(function(i){
		if (this.src && this.src.match('_off')) {
			$(this).hover(function(){
				if (this.src.match('_off')) 
					$(this).attr('src', $(this).attr('src').replace('_off', '_on'))
			}, function(){
				if (this.src.match('_on')) 
					$(this).attr('src', $(this).attr('src').replace('_on', '_off'))
			})
		}
	})
}

$(function(){
	rollover();
})

