/* フェイドロールオーバー */



$(document).ready(function(){ 

 

	$(".fade").hover(function(){

			$(this).stop().fadeTo(300, 0.7); // This should set the opacity to 100% on hover

			},function(){

			$(this).stop().fadeTo(200, 1.0); // This should set the opacity back to 60% on mouseout

			});
});

