jQuery(document).ready(function(){
jQuery('.alphahover').fadeTo(0,0);
    jQuery('.alphahover').hover(
        function() {
        jQuery(this).stop().animate({"opacity":1.0},150);
        },
        function() {
        jQuery(this).stop().animate({"opacity":0},400);
        });
})
