function closeMsg() {
	$("#divPoppedMessage").fadeOut(1200);
	$.cookie('DCCMSG', 'hideMe');
}

function eatCookie(){
	if (false) {
		return false;
	}
	else {
		initializeMsg();
	}
}

//TO FIX COOKIE
//$.cookie('DCCMSG') == 'hideMe'

function initializeMsg() {
	$("#divPoppedMessage").fadeIn(400);
	setTimeout('closeMsg()',10000);
      // attach a click event handler to the close button
 	    $("#divButtonClose").click(function(event) {
 	        // close the message
          closeMsg()
      });
}