jQuery(document).ready(function(){
jQuery("img.fadeout").hover(
function() {
jQuery(this).stop().animate({"opacity": "0"}, "medium").css({"z-index":"2"});
},
function() {
jQuery(this).stop().animate({"opacity": "1"}, "medium");
});
 
});
