// クロスフェード
// slow normal fast

$(document).ready(function(){
   $(".fade_div").fadeTo("fast", 1.0);
   $(".fade_div").hover(function(){
   $(this).fadeTo("fast", 0.6);
   },function(){
   $(this).fadeTo("fast", 1.0);
   });
   });

$(document).ready(function(){
   $(".thum").fadeTo("fast",1.0);
   $(".thum").hover(function(){
   $(this).fadeTo("fast",0.6);
   },function(){
   $(this).fadeTo("fast",1.0);
   });
   });

$(document).ready(function(){
   $("#text p").fadeTo("slow", 0.3); // loads
   $("#text p").hover(function(){
   $(this).fadeTo("slow", 1.0); // hover
   },function(){
   $(this).fadeTo("slow", 0.3); // mouseout
   });
   });
