    function getNotifications() {
                // ajax call
                $.ajax({
                    type: "GET",
                    url: "applications/cg/controllers/backend/get_notifications.php",
                   success: function(html){ // this happens after we get results
                        $(".notifications").html(html);
                  }
                });
         return false;
    }
