var NotificationControl={Messages:null,showError:function(n){n||(n=0);NotificationControl.Messages.length>n?($("#messageBox .note-wrapper").length?$("#messageBox .note-wrapper").hide().html(NotificationControl.Messages[n].Message).fadeIn():$("#messageBox").hide().html(NotificationControl.Messages[n].Message).fadeIn(),$("#messageBox").fadeIn()):$("#messageBox").fadeOut()},addNotification:function(n,t){NotificationControl.Messages==null&&(NotificationControl.Messages=[]);NotificationControl.Messages.push({Message:n,Type:t});NotificationControl.showError()},clearNotifications:function(){NotificationControl.Messages=[];NotificationControl.showError()}};$(document).ready(function(){NotificationControl.showError()})