$(function()
{
	$('#nav img').each(function()
	{
		new Image().src = this.src.replace('.jpg', '_Over.jpg');
		
		$(this).hover(
			function()
			{
				this.src = this.src.replace('.jpg', '_Over.jpg');
			},
			function()
			{
				this.src = this.src.replace('_Over', '');
			}
		);
	});
});
