$(document).ready(function(){
/*
		$("div.wevalue-category div, div.product-subcategory div, div.product-category div, div.faqs-category div").each(function(i){
		if( (i+1)%4==0 ) { $(this).addClass("last"); }
	});
	*/


	$("a.showDetail").click(function(){
		$(this).siblings("div.itemDetail").toggle("fast");
	});

	$("#desireDate").hover(function(){
		$(this).css("cursor","pointer");	
	},function(){
		$(this).css("cursor","");	
	})
});