//半透明ロールオーバースクリプト//
$(function(){
    $('.headnavi li').hover(function(){
        $(this).fadeTo(150,0.5);
    },function(){
        $(this).fadeTo(150,1.0);
    });
		
    $('.n-bnr').hover(function(){
        $(this).fadeTo(150,0.5);
    },function(){
        $(this).fadeTo(150,1.0);
    });

    $('#pagetop img').hover(function(){
        $(this).fadeTo(150,0.5);
    },function(){
        $(this).fadeTo(150,1.0);
    });
		
    $('.to-shop').hover(function(){
		$(this).fadeTo(150,0.5);
    },function(){
        $(this).fadeTo(150,1.0);
    });

    $('#item-cat li').hover(function(){
		$(this).fadeTo(150,0.6);
    },function(){
        $(this).fadeTo(150,1.0);
    });
	
    $('#news-cat li img').hover(function(){
		$(this).fadeTo(150,0.6);
    },function(){
        $(this).fadeTo(150,1.0);
    });
	
    $('.backtolist img').hover(function(){
		$(this).fadeTo(150,0.6);
    },function(){
        $(this).fadeTo(150,1.0);
    });

    $('#item-bnr img').hover(function(){
		$(this).fadeTo(150,0.6);
    },function(){
        $(this).fadeTo(150,1.0);
    });

});



//ブロック要素カラーロールオーバースクリプト//
$(function(){
	$(".item-box").jFade({
		trigger: "mouseover",
		property: 'background',
		start: 'ffffff',
		end: 'f3f3e8',
		steps: 10,
		duration: 10
		}).jFade({
		trigger: "mouseout",
		property: 'background',
		start: 'f3f3e8',
		end: 'ffffff',
		steps: 10,
		duration: 10
	});

	$(".recom-box").jFade({
		trigger: "mouseover",
		property: 'background',
		start: 'ffffff',
		end: 'f3f3e8',
		steps: 10,
		duration: 10
		}).jFade({
		trigger: "mouseout",
		property: 'background',
		start: 'f3f3e8',
		end: 'ffffff',
		steps: 10,
		duration: 10
	});
		$(".odd").jFade({
		trigger: "mouseover",
		property: 'background',
		start: 'ffffff',
		end: 'f3f3e8',
		steps: 10,
		duration: 10
		}).jFade({
		trigger: "mouseout",
		property: 'background',
		start: 'f3f3e8',
		end: 'ffffff',
		steps: 10,
		duration: 10
	});
		$(".even").jFade({
		trigger: "mouseover",
		property: 'background',
		start: 'f8f8f5',
		end: 'f3f3e8',
		steps: 10,
		duration: 10
		}).jFade({
		trigger: "mouseout",
		property: 'background',
		start: 'f3f3e8',
		end: 'f8f8f5',
		steps: 10,
		duration: 10
	});
});



