// JavaScript Document

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