// JScript File

function bellsWhistles() {
    $('a.selected[title="Benefits Investigation"] span, a.selected[title="Home"] span').addClass('single');
    $('a[rel="external"]').append('<img src="../images/widget-external-link-10.png" alt="external link" class="linkimg" />');
    //$('a[rel="external"]').click(function(){
        // window.open(this.href);
         //return false;
         //}).attr("title", "Opens in a new window");
   $('a[type="application/pdf"]').append('<img src="../images/icon_adobe.jpg" alt="Adobe PDF document" class="linkimg" />'); 
   $('a[type="application/pdf"]').click(function(){
        window.open(this.href);
         return false;
         }).attr("title", "Opens PDF in a new window"); 
    $('a[type="application/word"]').append('<img src="../images/icon-word.jpg" alt="MS Word document" class="linkimg" />');
    $('fieldset label').append('<span>:</span>');
    $('fieldset label.req').append('<b>*</b>');  
   $('dl#glossary dt').append(':'); 
   $('#content div.billing table tbody tr:odd').addClass('odd');
}


function ieTweaks() {
    //alert('jquery ieTweaks');
    //kills click event on phone numbers for IE 
    $('a.phone, a.phone2').click(function(){
    return false;
    });
   //sets hover class so background works 
   jQuery('ul#lnav li#headitem4 + li.expandable, ul#lnav > li').hover(
        function(){
            jQuery(this).addClass('hover');
        }, function () {
            jQuery(this).removeClass('hover');
        });
    jQuery('div#sidebar2 div.r-callout p:first-child').addClass('first'); 
 
}

