
$(function(){
                $("img.rollover").hover(function(){
                $(this).stop(true, false).fadeTo(500,0.6);},
                function(){
                $(this).stop(true, false).fadeTo(300,1.0);});
                });

