(function () {

    $('document').ready(function () {
		initServiceOutage();
    });

    // Start set current step wrapper
	function initServiceOutage(){
		var closeSOnotification, 
			closeOutageMessageNotification;
			var self = this;
            closeOutageMessageNotification = document.getElementById("service-outage-notification");
            closeSOnotification = document.getElementById("serviceOutagecloseBtn");
            try {
                if (closeOutageMessageNotification) {
                    if (closeSOnotification != null) {
                        closeSOnotification.addEventListener("click", function () { closeOutageMessageNotification.classList.add("bhp-hide"); });
                    }
                }
            }
            catch (exe){}
	}
})();



