 $(function() {
	$('.main-nav ul li a img').hover(
		function() {
			if (this.src.indexOf('-sel') < 0) {
				this.src = this.src.replace( /\.jpg$/, '-over.jpg' );
			}
		},
		function() {
			
			if (this.src.indexOf('-sel') < 0) {
				this.src = this.src.replace( /-over\.jpg$/, '.jpg' );
			}
		}
	);
});