//半透明ロールオーバースクリプト//
$(function(){
    $('.new-item-thumb').hover(function(){
        $(this).fadeTo(150,0.7);
    },function(){
        $(this).fadeTo(150,1.0);
    });
	
    $('.item-thumb').hover(function(){
        $(this).fadeTo(150,0.7);
    },function(){
        $(this).fadeTo(150,1.0);
    });
	
    $('.main-img').hover(function(){
        $(this).fadeTo(150,0.7);
    },function(){
        $(this).fadeTo(150,1.0);
    });
	
    $('.blog-thumb').hover(function(){
        $(this).fadeTo(150,0.7);
    },function(){
        $(this).fadeTo(150,1.0);
    });
		
    $('.thumb-entry-img').hover(function(){
		$(this).fadeTo(150,0.6);
    },function(){
        $(this).fadeTo(150,1.0);
    });

});



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