$(function(){
    $('#explore_group').dsTab();
    $('<div id="info_buttons"><a class="button prev" href="">Back</a><a class="button next" href="">Next</a></div>').prependTo('#info_slides');
    $('#info_slides div.slides').cycle({
        timeout: 10000
        , pause: 1
        , next: '#info_buttons a.next'
        , prev: '#info_buttons a.prev'
    });
});

