
    $(document).ready(function() {

        $('a').each(function() {
            if(jQuery(this).attr('href').indexOf('.pdf',0)>0) {
                jQuery(this).addClass('pdf');
            }
        });

    });
