
$(document).ready(function(){

$(".rollover").hover(
function() {
$(this).stop().animate({"opacity": "0.90"}, "fast");
},
function() {
$(this).stop().animate({"opacity": "0"}, "fast");
});

});

