$(document).ready(function(){
 $("img.a").css({ opacity: 0 });
$("img.a").hover(
function() 
{
	$(this).stop().animate({"opacity": "1"}, "slow");
},
function() 
{
	$(this).stop().animate({"opacity": "0"}, "slow");
});

$("img.c").css({ opacity: 1 });
$("img.c").hover(
function() 
{
	$(this).stop().animate({"opacity": "0"}, "slow");
},
function() 
{
	$(this).stop().animate({"opacity": "1"}, "slow");
});
 

});

