// JScript File

//alert('jquery common file is active');

function bellsWhistles() {
    //alert('jquery bellsWhistles');
    var offramp = '/system_pages/SiteExit.aspx?url=';
    $('a[rel="siteexit"]').attr('href', function(concat) {
        return offramp + this.href;
        });
    $('a[type="application/pdf"]').after('(PDF)');
    //$('a[type="application/word"]').after('<img src="/images/icons/ms-word.png" alt="MS Word document" class="linkimg" />');
    $('a.top').append('<img src="/images/icons/to-top.png" alt="Back to top" class="linkimg" />');
    $('div#glossary dl dt').append(':');
    $('div.chart table tbody tr:nth-child(odd)').addClass("zebra");
}

