
$(function(){
	$("img", ".gmenu_item").hover(function(){
		if($(this).attr('src').indexOf('_mo') == -1) {
			$(this).attr('src', $(this).attr('src').replace('.gif','_mo.gif'));
			$(this).addClass('hover');
		}
	},function(){
		if($(this).hasClass('hover')) {
			$(this).attr('src', $(this).attr('src').replace('_mo.gif','.gif'));
			$(this).removeClass('hover');
		}
	});

});

