$(document).ready(function(){
         $('a img').hover(function(){
		         $(this).stop().animate({'opacity' : '0.7'}, 200);
		 }, function(){$(this).stop().animate({'opacity' : '1'}, 300);});
});

$(document).ready(function(){
         $('#bpmenu a').hover(function(){
		         $(this).stop().animate({'opacity' : '0.7'}, 300);
		 }, function(){$(this).stop().animate({'opacity' : '1'}, 300);});
});

$(document).ready(function(){
         $('#main #text #bt_google a img').hover(function(){
		         $(this).stop().animate({'opacity' : '1'}, 300);
		 }, function(){$(this).stop().animate({'opacity' : '1'}, 300);});
});
