$(document).ready(function() {
    //remove on enabled js
    $(".collapse").removeClass("collapse");

    var sliders = $(".image_slider");
    for (var i = 0; i < sliders.length; i++) {
        $(sliders[i]).easySlider({ numeric: true, numericId: 'controls' + i });
    }

    $('.case_grid.caption').hover(function() {
        $(".cover", this).stop().animate({ top: '-3px' }, { queue: false, duration: 260 });
    }, function() {
        $(".cover", this).stop().animate({ top: '100px' }, { queue: false, duration: 600 });
    });


});