;
// switch on smooth scrolling
jQuery(document).ready(function () {
    jQuery ("#nav")
        .localScroll({
            speed: 1000,
            offset: -10,
            easing: 'easeOutQuad'
        });
    jQuery.each (jQuery(".pics"), function () {
        jQuery("a", this).lightBox ({
            containerResizeSpeed: 600
        });
    });
    jQuery (".pics")
        .cycle ({
            slideExpr: 'a',
            speed: 'slow',
            timeout: 4000,
            fx: 'fade',
            pause: true,
            sync: true
        });
});

