$(document).ready(function(){
    $("img.lazyload").each(function() {
      $(this).attr("src", $(this).attr("original"));
      $(this).removeAttr("original");
    });
  
    $("#slider").show();
    $("#slider").easySlider({
        auto: true,
        continuous: true,
        controlsShow: false,
        pause: 3000
    });
});

