
	var _coffeeAlert;
	
	$(document).ready(function() {
	
	    _coffeeAlert = $('<div id="_coffeeAlert"><div class="coffeeAlert"></div><div class="coffeeAlert_window"><h2></h2><p></p><a href="javascript: void(0)" onclick="coffeeAlertClose()" class="coffeButton">OK</a></div></div>');
		$('#header').append(_coffeeAlert);
		
	});
	
	function coffeeAlert(label, content, ico) {
	
		_coffeeAlert.css('display', 'block');
		_coffeeAlert.find('h2').text(label);
		_coffeeAlert.find('p').text(content);
		
	}

	function coffeeAlertClose() {
		
		_coffeeAlert.css('display', 'none');
		
	}
