jQuery(document).ready(function(){
    jQuery('.main-logo').on('click',function(){
         window.location="/content/pnc-com/en/riverarch/index.html"
    })
    //navigation links were not working in tablet/mobile
    //the second level nav links had to be hardcoded in second level nav as a workaround
    //this caused empty spans to show up
    //because the nav is the epitome of trash
    //hence this line of code
    jQuery('.subitem span:empty').parent().remove()
})
