$(document).ready(function(){
         $('.button1 a')
		 .hover(function(){
		         $(this).stop().animate({'opacity' : '0'}, 800);
		 }, 
		 function(){$(this).stop().animate({'opacity' : '1'}, 800);
		 }
	);
});
$(document).ready(function(){
         $('.button2 a')
		 .hover(function(){
		         $(this).stop().animate({'opacity' : '0'}, 800);
		 }, 
		 function(){$(this).stop().animate({'opacity' : '1'}, 800);
		 }
	);
});
$(document).ready(function(){
         $('.button3 a')
		 .hover(function(){
		         $(this).stop().animate({'opacity' : '0'}, 800);
		 }, 
		 function(){$(this).stop().animate({'opacity' : '1'}, 800);
		 }
	);
});
$(document).ready(function(){
         $('.button4 a')
		 .hover(function(){
		         $(this).stop().animate({'opacity' : '0'}, 800);
		 }, 
		 function(){$(this).stop().animate({'opacity' : '1'}, 800);
		 }
	);
});
$(document).ready(function(){
         $('.button5 a')
		 .hover(function(){
		         $(this).stop().animate({'opacity' : '0'}, 800);
		 }, 
		 function(){$(this).stop().animate({'opacity' : '1'}, 800);
		 }
	);
});

