// Sitewide alerts
var today = new Date();
dd = today.getDate();
mm = today.getMonth()+1;
hrs = today.getHours()
if ( dd < 22 && hrs < 12 ) {
$('#sitewide-alert').html('
As a result of periodic system examinations we will be conducting maintenance estimated to begin XXXX at XXXX and end at XXXX CST. An outage may occur.
// Sitewide alerts
var today = new Date();
dd = today.getDate();
mm = today.getMonth()+1;
hrs = today.getHours()
if ( dd < 22 && hrs < 12 ) { $('#sitewide-alert').html('
As a result of periodic system examinations we will be conducting maintenance estimated to begin XXXX at XXXX and end at XXXX CST. An outage may occur.
');
}