$(function() {
setInterval( "clickRight()", 5000 );
});
$('.slide_right').click(function clickRight(){
etc...
I basically want my slideshow to move to the next slide as if the user clicked the right button. This example is not working for me.