jquery Cycle - Next by clicking image as well as a next button.

jquery Cycle - Next by clicking image as well as a next button.

This might be a easy question help would be appreciated.
 
I am using the  jquery Cycle plugin for a slide show. I have it set up so that the next function is triggered on the .slideshow class, so the image changes when clicked. I would like to have a next button in addition to this functionality.  

  1. $('.slideshow').cycle({ 
  2.     fx:     'fade', 
  3.     speed:  'slow', 
  4.     timeout: 4500,  
  5.     next:   '.slideshow', 
  6.     prev:   '#prev' 
  7. });

I would like to add a second next: '#next' but this doesn't work.

Is there a way to do this?

Thanks for any help.