/*
 * function.js
 * last modified: 2010.03.13
 */


/* TOP */
/*$(document).ready(function() {
	$(".sitetop .sect_intro .piece:nth-child(4n)").addClass("lastPiece");
}); */

/* PRODUCTS */
$(document).ready(function() {
	$("#area_contents ul.three-piece li:nth-child(3n)").addClass("tail");
	$("#area_contents ul.four-piece li:nth-child(4n)").addClass("tail");
	$("#area_contents ul.five-piece li:nth-child(5n)").addClass("tail");
}); 

/* SHOP */
$(document).ready(function() {
	$("#area_contents div.shopList div.eachPrefList dl:first-child + dl").addClass("secondChild");
}); 

/* NEWS */
$(document).ready(function() {
	$(".news .entryList div.entryBlock").hover(
	function () {
		$(this).css("background-color","#e6e6e6");
	},
	function () {
		$(this).css("background-color","#ffffff");
	});
	$('.news .entryList div[class="entryBlock"]:last').css("border-bottom","none").css("margin-bottom","15px");
}); 

$(document).ready(function() {
	$(".news .sideColumn ul.listView li").hover(
	function () {
		$(this).css("background-color","#e6e6e6");
	},
	function () {
		$(this).css("background-color","#ffffff");
	});
}); 



