$(document).ready(function(){
	$('.menuWrapper').hover(function(){
		$(this).find('ul').show();
		path = $(this).find('img.hov').unbind().attr('src');
		path = path.replace(/.gif/gi,'');
		$(this).find('img.hov').attr('src',path+'_hover.gif');
	},function(){
		$(this).find('ul').hide();
		path = $(this).find('img.hov').attr('src');
		path = path.replace(/_hover.gif/gi,'')
		$(this).find('img.hov').attr('src',path+'.gif');
	});
	$('.menu img.hov').not($('.menu .menuWrapper img.hov')).hover(function(){
		path = $(this).attr('src');
		path = path.replace(/.gif/gi,'')
		$(this).attr('src',path+'_hover.gif');
	},function(){
		path = $(this).attr('src');
		path = path.replace(/_hover.gif/gi,'')
		$(this).attr('src',path+'.gif');
	})
});
