$(document).ready(function(){
	
	//商品一覧ページのレイアウト制御
	
	var item4n = $("#itemList li:nth-child(4n)");
	
	item4n.css("marginRight","0");
	item4n.addClass("mr0");
	$(".mr0 + li").css("clear","both");
	$("#recently .itemArea:nth-of-type(6), #recommendArea .itemArea:nth-of-type(6)").css("clear","both");
	
	//input要素もロールオーバーさせる
	$("input[type='image']").hover(
		function(){
			$(this).css("opacity","0.7");
		},
		function(){
			$(this).css("opacity","1");
		}
	);
	
	//TOPページ商品のレイアウト制御
	
	$(".tab_content .itemArea:nth-child(6)").css("clear","both");
	
});

