$(function(){

// for img（ロールオーバ時に半透明にする）
	$(".imgRollover")
	.mouseover(function(){
		$(this).animate({opacity:0.3},'fast');
		$(this).animate({opacity:0.7},'fast');
	})
	.mouseout(function(){
		$(this).animate({opacity:1.0},'normal');
	});

})

