(function($) {
$(document).ready(function() {
	try
	{
		var notice = '/notice.html';
		//var notice = 'http://localhost:8080/wodakLookAndFeel/notice.html';
		$.getJSON(notice, function(json) {
			if (typeof json.until == "undefined")
				return;
			var until = new Date(json.until);
			var now = new Date();

			if (now <= until && json.text != '' ) 
			{
				$('#alertNotice').text(json.text).show();

			}
		});


	}      
	catch (e)
	{
		if (typeof console != "undefined")
			console.log(e);
	}
});
})(jQuery);