$(document).ready(function() {
	$('a[href$=".pdf"]').css({ backgroundImage: 'url(../images/doc_types/icon_pdf.gif)', backgroundRepeat: 'no-repeat' ,paddingLeft: '20px',textDecoration:'none' , lineHeight: '12pt', paddingBottom:'2px' }).hover( function(){ $(this).css({textDecoration:'underline'}); }, function () { $(this).css({textDecoration:'none'}); } ).click( function() {
        window.open( $(this).attr('href') );
        return false;
    });
 });

