jQuery(function($) {
    //borrowed from jQuery easing plugin
    //http://gsgd.co.uk/sandbox/jquery.easing.php
    $.easing.backout = function(x, t, b, c, d) {
        var s = 1.70158;
        return c * ((t = t / d - 1) * t * ((s + 1) * t + s) + 1) + b;
    };

    $('#screen').scrollShow({
        view: '#view',
        content: '#images',
        navigators: 'a[id]',
        circular: true,
        start: 0,
        itemSize: {
        height: 334,
        width: 323
    }, 
    margin:false,
    setWidth: true
    });
});
