$(document).ready(function()
{
	$('#main_menu img').hover(
		function () {
			var re = new RegExp('([0-9]+)\.gif$');
			if($(this).attr("src").search(re) != -1)
			{
				$(this).attr("src", $(this).attr("src").replace(re, '$1_hover.gif'));
				$(this).data('dynamic', true);
			}
		},
		function () {
			if($(this).data('dynamic'))
			{
				var re = new RegExp('_hover\.gif$');
				$(this).attr("src", $(this).attr("src").replace(re, '.gif'));
			}
		}
	);
});

