Jquery / Ajax cookie pt2

Siguiendo con una pregunta anterior, (Pregunta anterior), Parece que no puedo "disparar" la llamada ajax si se detecta una cookie. La cookie definitivamente está configurada, y se muestra la alerta, pero no puedo por mi vida hacer que vuelva a activar la llamada ajax. Solo necesito que 'dispare' el ajax cuando se carga la página si se detecta la cookie, en lugar de usar el botón 'más'.

Espero que esto tenga sentido. Cualquier ayuda muy apreciada. S.

 $(document).ready(function(){                                                 
        $(function() {
        //More Button                        
        $('.more').live("click",function() 
        {    
        $.cookie('viewing_expanded_content',true, { expires : new Date(new Date().valueOf() + 60 * 60 * 1000) });
        var ID = $(this).attr("id");
        if(ID)
        {                        
        $("#more"+ID).html('<img src="images/more_press.gif" alt="More results..." />');
        $.ajax({                   
        type: "POST",
        url: "more_press.php",
        data: "lastmsg="+ ID, 
        cache: false,
        success: function(html){                                        
        $("div#updates").append(html);
        $("#more"+ID).remove();
                }
            });
        } else {
        $(".morebox").html('<p><strong>No more results...</strong></p>');
        //$.cookie('viewing_expanded_content', null);
        }
        return false;
                });

              });

        var viewing_expanded_content = $.cookie('viewing_expanded_content');
        if ( viewing_expanded_content == 'true' ) {

        alert("Active cookies!");    

        //my proposed call that doesnt work
        $.ajax({                   
        type: "POST",
        url: "more_press.php",
        data: "lastmsg="+ ID, 
        cache: false,
        success: function(html){                                        
        $("div#updates").append(html);
        $("#more"+ID).remove();
                }
            });
        }    

        })

EDITAR:Solución de trabajo aquí ...

Respuestas a la pregunta(1)

Su respuesta a la pregunta