$(function() {
$('#pensMenu li a').hover(function(e) {
        $('#pentypeText').stop().fadeTo("fast", 0.1, function() {
            $('#pentypeText').html($('#' + $(e.target).attr('class')).html()).fadeTo("fast", 1);
        });
}, function() {
    $('#pentypeText').stop().fadeTo("fast", 0.1, function() {
            $('#pentypeText').html($('#defaultPen').html()).fadeTo("fast", 1);
        });
    });
});