$(function() {
	$('#wrapper #header a img').hover(
		function() {				
			this.src = this.src.replace( /\.gif$/, '_over.gif' );
		},
		function() {
			this.src = this.src.replace( /_over\.gif$/, '.gif' );
		}

	);
});

