Fullscreen background and Cycle Plugin

Fullscreen background and Cycle Plugin

Any suggestions on how to create a simple slide-show type site using the cycle plugin with a full-screen background?

I am nearly there - http://unsustainabledesign.com/clients/backspace/

Currently I am using the following plugins
fullscreen image plugin - http://nanotux.com/blog/fullscreen/
cycle plugin - http://jquery.malsup.com/cycle/

The issue I have is if you resize the window, make it as large as possible, and move from section to section and re-size the window the image does not properly re-size until I re-size the browser it self.

Is there a way to run the image re-size function each time I click a menu item?

The code below is using the cycle plugin help show the text and image associated with each item:
   
    $('#goto1').click(function() {
        $('#s1').cycle(0); // show the text for the section
        $('#s2').cycle(0); // show the full screen image
        return false;
    });


Any help would be greatly appreciated.

John