var $j = jQuery.noConflict();
$j(document).ready(function(){
        var mv = 
        $j('.container').pager('ul', {
                onMove: function() {
                        var h = $j('.container').height();
                        // total hack to position the nav for 
                        // browsers other than IE7.
                        if (h > 100) {
                                $j('.nav').css('top', h + 10);
                        }
                }
        });
        $j('.container').show();
});

