$(document).ready(function(){
		$("img.a").hover(
		function() {
		$(this).stop().animate({"opacity": "0"}, "slow");
		},
		function() {
		$(this).stop().animate({"opacity": "1"}, "slow");
		});
		 
		});
		
function roll_over(img_name, img_src)
	   {
	   document[img_name].src = img_src;
	   }		
