$(function() {
    $('#nav > li').add('#nav ul').hover(function() {
        $(this).toggleClass('hover');
    }, function() {
        $(this).toggleClass('hover');
    });
    
    $('#content .post-content').find('a[href$=pdf]').css({
        'display': 'block',
        'height': '18px',
        'padding-left': '25px',
        'background': 'url(/wp-content/themes/robhessco.com/images/pdf.png) 0 0 no-repeat'
    }).end().find('a[href$=xls]').css({
        'display': 'block',
        'line-height': '18px',
        'padding-left': '25px',
        'background': 'url(/wp-content/themes/robhessco.com/images/xls.png) 0 0 no-repeat'
    })
});