$(document).ready(function(){
    /*Customer Service Contact Numbers Page*/
    $('.numbers').accordion({
        active: false,
        alwaysOpen: false, 
        autoHeight: false
    });
    $('.numbers .cs_link a').click(function(){
        lnk = $(this).attr('href');
        if(lnk){
            window.open(lnk);
            return false;
        }
    });
    $('.compliant_click').click(function(){
        $(this).next().fadeIn('slow');
        return false;
    });
    $('.cs_faq_btn').click(function(){
        name = $(this).attr('name');
        window.open(name);
        return false;
    });
});
