$(document).ready(function(){
});
    
function equalHeight(group) {
    var tallest = 0;
    group.each(function() {
        var thisHeight = $(this).height();
        if(thisHeight > tallest) {
            tallest = thisHeight;
        }
    });
    group.height(tallest);
}

$(function(){
    $('#our-work ul.slider').bxSlider({
      infiniteLoop: true, 
      auto: true,
      speed: 1000,
      pause: 8000,
      autoHover: true,
      tickerHover: true,
    });
});    

