// カテゴリートップ マウスオーバー・マウスアウト
$(function() {
	$('ul.category_list a img').each(function(){
		var overImg = $(this).get(0).src.replace('.gif', '_o.gif');
		MM_preloadImages(overImg);
	});
	$('ul.category_list a').mouseover(function(event){
		$(this).parent().css('background-image', 'url(/products/img/category_list_bg_o.gif)');
		$('img',this).each(function(){
			var overImg = $(this).get(0).src.replace('.gif', '_o.gif');
			$(this).get(0).src = overImg;
		});
	});
	$('ul.category_list a').mouseout(function(event){
		$(this).parent().css('background-image', 'url(/products/img/category_list_bg.gif)');
		$('img', this).each(function(){
			var overImg = $(this).get(0).src.replace('_o.gif', '.gif');
			$(this).get(0).src = overImg;
		});
	});
});

