$(document).ready(function() {
    $('#categoryNav li img').hover(
		function() {
			this.src = this.src.replace(/-off\.png/, '-on.png');
		},
		function() {
			this.src = this.src.replace(/-on\.png/, '-off.png');
		}
	);
});