/**
 * @author Arek
 */
$(function(){

    //vars
    var conveyor = $(".content-conveyor", $("#sliderContent")), item = $(".item", $("#sliderContent"));
    var a = $('div.content-conveyor').height() / 2 + 40;
    var sliderOpts = {
        orientation: 'vertical',
        max: a,
        min: 0,
        value: a,
        animate: true,
        slide: function(e, ui){
        
            var val = (a - ui.value);
            
            conveyor.css("bottom", "" + val + "px");
        }
    };
     $("#slider").slider(sliderOpts);
});



_typeface_js.initialize();



