$(document).ready(function(){
	  // CSSプロパティのopacityを書き換える
  $('#topimage a img')
    .mouseover(function(){
        $(this).animate({opacity: 0.7}, 'fast');
    })
    .mouseout(function(){
        $(this).animate({opacity: 1.0}, 'fast');
    });
    
});
