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

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

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

