$(function(){
    // Display banner for /grad until Monday, July 18, 2022 12:00:00 AM GMT-04:00
    if(
        new Date().getTime() < 1658116800000 &&
        window.location.pathname.match( /^\/grad(?:\/|$)/i )
    ){
        $( 'nav.main-nav' ).after( `
            <a style="margin:0px; text-decoration:underline !important;" class="button-bg3 block" href="https://engage.upstate.edu/portal/on-campus?id=f4c1fcd7-76d3-4bb2-95f1-d45850e432d0">Registration now open College of Graduate Studies Summer Open House | Reserve Your Seats by 7/17/2022!</a>
        ` );
    }
});