$(function(){
	
	$('#menu li img').each(function(){
		
		var src, osrc;

		src = this.src;
		
		osrc = src.replace(/(.+?)\.png$/, '$1_ov.png');
		
		(new Image).src = osrc;
		
		$(this).parent().css('background', 'url(' + osrc + ')');
		
		$(this).hover(
			function(){
				$(this).stop(true).animate({'opacity': 0},200,'swing');
			},
			function(){
				$(this).stop(true).animate({'opacity': 1},400,'swing');
			}
		);
		
	});
		
});

$(function(){
	
	$('.category_img a img').each(function(){
		
		var src, osrc;

		src = this.src;
		
		osrc = src.replace(/(.+?)\.png$/, '$1_ov.png');
		
		(new Image).src = osrc;
		
		$(this).parent().css('background', 'url(' + osrc + ')');
		
		$(this).hover(
			function(){
				$(this).stop(true).animate({'opacity': 0},200,'swing');
			},
			function(){
				$(this).stop(true).animate({'opacity': 1},400,'swing');
			}
		);
		
	});
		
});

