/* -----------------------------------------------------------------------*/
// imageOpacity
/* -----------------------------------------------------------------------*/
$(function() {
	$(".fadeBtn").hover(function() {
		$(this).fadeTo(360, 0.8)
	},function() {
		$(this).fadeTo(360, 1.0)
	});
	$(".fadeBtn").click(function() {
		$(this).fadeTo(360, 1.0)
	});
});


/* -----------------------------------------------------------------------*/
// scroll
/* -----------------------------------------------------------------------*/
$(function () {
	$('a[href*=#descriptionCol]').click(function () {
		$(this).blur();
		$('html,body').animate({ scrollTop: 0 }, 1000, 'easeInOutQuart');
	return false;
	});
});


/* -----------------------------------------------------------------------*/
// 今週のカタログ「YUKIくん」
/* -----------------------------------------------------------------------*/
$(function() {
	$("#catalog .item:odd").addClass("itemR");
});




