jQuery(function ($) {
$( document ).ready(function() {
// Activate RevSlider API
var revapi = $('#rev_slider_1_1').show().revolution({
waitForInit: true
});
$('body').on( "click", ".hv-custom-slider .rd_tm_pager a:nth-child(1)" ,function(){
revapi.revshowslide(1);
});
$('body').on( "click", ".hv-custom-slider .rd_tm_pager a:nth-child(2)" ,function(){
revapi.revshowslide(2);
});
$('body').on( "click", ".hv-custom-slider .rd_tm_pager a:nth-child(3)" ,function(){
revapi.revshowslide(3);
});
});
})