// JScript File

//alert('jquery common file is active');

function bellsWhistles() {
    //alert('jquery bellsWhistles');
   var offramp = '/system_pages/SiteExit.aspx?url=';
    $('a[rel="external"]').attr('href', function(concat) {
        return offramp + this.href;
        });  
    $('a[rel="external"]').after('<img src="/images/icons/external-link.png" alt="external link" class="linkimg" width="10" height="10" />'); 
	$('a[type="application/pdf"]').click(function(){window.open(this.href);return false;}).attr("title", "Opens in a new window");
    $('a[type="application/word"]').after('<img src="/images/icons/word-icon.png" alt="MS Word document" class="linkimg" />'); 
    //$('a.top').after('<img src="/images/widgets/to-top.png" alt="Back to top" class="linkimg" />');
    $('div#terms dl dt').append(':');
   $('div#content.glossary dl dt').append(':'); 
    $('fieldset label.req').prepend('<b>*</b>');
	$('ul#faq-anchors li a').before('<img src="/images/icons/purplekcarrot.gif" class="linkimg" />');
    $('fieldset p.req').prepend('<b>*</b>'); 
    $('div.chart table tbody tr:nth-child(odd)').addClass("zebra");
   //Hides sitemap link on sitemap page 
   $('div#content ol.nav_ol li a[href="/sitemap.aspx"]').css('display', 'none'); 
   $('div#content ol.nav_ol li a[href="/sign-up.aspx"]').css('display', 'none'); 
   //Google Analytics tag for e-details.
}







