// JavaScript Document
$(document).ready(function(){
   $('.button2 a').hover(function(){
   $(this).stop().animate({'opacity' : '0'}, 300);
   }, function(){$(this).stop().animate({'opacity' : '1'}, 600);});
});

$(document).ready(function(){
   $('.button22 a').hover(function(){
   $(this).stop().animate({'opacity' : '0'}, 300);
   }, function(){$(this).stop().animate({'opacity' : '1'}, 600);});
});
