$(function() {
$('#hp_top').cycle({ 
    fx:    'fade',
    speed:  2500,
    timeout:  15000,
    pager:  '#hp_tabs',
    pagerAnchorBuilder: function(idx, slide) {
    // return sel string for existing anchor
    return '#hp_tabs li:eq(' + (idx) + ') a';
        }
    });
});
$(function() {
$('#hp_StopButton').click(function() { 
    $('#hp_top').cycle('pause'); 
}); 

$(function() {
$('#hp_PlayButton').click(function() { 
    $('#hp_top').cycle('resume', true); 
});

});

});