jQuery('.productSlideshow').cycle({
	fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc..
	timeout: '7000'
});

jQuery('.slideshowToggle').click(function() {
	jQuery('.productSlideshow').cycle('toggle');
	jQuery('.slideshowToggle').toggleClass('slideshowPlay');
});

jQuery('.slideshowNext').click(function() {
	jQuery('.productSlideshow').cycle('next');
});

jQuery('.slideshowPrev').click(function() {
	jQuery('.productSlideshow').cycle('prev');
});