if (jQuery) {
	var $shown	= false;
	
	function getNotify() {	
		if ($iUserID) {
			jQuery.get("/ajax/getNotify.php", {user: $iUserID}, function(data) {
				if (data) {
					$("#notify").show();
					$("#notify").html(data);
					$(".notify").show().slideDown(50);
				} else {
					$("#notify").hide();
				}
			});
			
			//setTimeout("getNotify()", 8400);
		}
	}

	//getNotify();
}

