/* --------------------------------------------------- */
/*

      AZASS NEW PICKUP (UTF-8)

                                          by inoue

                              LastUpdate 2011/08/25

     Copyright (C) 2011 NEXT11 All Rights Reserved.
*/
/* --------------------------------------------------- */

$(function() {
	//TOPの新作リスト
	$('.newlist').mouseover(function() {
		$(this).addClass('mouseover');
	});
	$('.newlist').mouseout(function() {
		$(this).removeClass('mouseover');
	});
	//カテゴリーページ
	$('.cateblock').mouseover(function() {
		$(this).addClass('mouseover');
	});
	$('.cateblock').mouseout(function() {
		$(this).removeClass('mouseover');
	});
});

