$(document).ready(function() {
        $(".slider").carouFredSel({
            circular: false,
            infinite: false,
            width: 704,
            align: false,
            height: 337,
            items: {
                visible: 1,
                width: 704,
                height: 337
            },
            scroll: {
                items: 1,
                duration: 750,
                easing: 'easeInOutExpo',
                onAfter: function(){
                    $('.overlay').show("slide", { direction: "left" }, 150);
                },
                onBefore: function() {
                    $('.overlay').hide("slide", { direction: "left" }, 500);
                }
            },
            auto: false,
            pagination    : {
                container        : ".thumb-nav",
                anchorBuilder    : function( nr, item ) {
                    var src = $("img", item).attr( "src" );
                        src = src.replace( "/large/", "/small/");
                    return '<li><a href="" class="nolink"><span></span><img src="' + src + '" width="53" height="53" /></a></li>';
                }
            }
        });
});
