/* vim: set tabstop=2 shiftwidth=2 foldmethod=marker: */
/**
 * @author      Shogo Kawase <shogo@arcstyle.jp>
 * @author      Yusuke Naito <yuk@arcstyle.jp>
 * @copyright   Arc Style Inc.
 * @version     SVN: $Id: public.js 13468 2011-01-29 02:27:40Z mitani $
 */

/** jquery.ready **/
$(function(){
	/*** 商品リスト ***/
	$('#recommendArea li:nth-child(5n)').addClass('lineEnd');
	$('#searchList li:nth-child(5n)').addClass('lineEnd');
	
	/*** 商品一覧タブ ***/
	$('#selectCategory li').hover(function(){
		$(this).addClass('hover');
	},function(){
		$(this).removeClass('hover');
	});
	
	/*** bigerlink ***/
	/*$('.tableName,#recommendArea li')
		.biggerlink()
		.hover(function(){
			$(this).fadeTo('normal',0.6);
		},function(){
			$(this).fadeTo('normal',1);
		});*/
		

});

