$(function() {
	$('#slideshow2').cycle({ 
    prev:   '#prev', 
    next:   '#next', 
	fx:         'fade',
    speed:       500,
    timeout:     4000,
    random:  1 
	});
	$(function() {
	$('#pauseButton').click(function() { 
    $('#slideshow2').cycle('pause'); 
	});
	$(function() {
	$('#resumeButton').click(function() { 
    $('#slideshow2').cycle('resume', true); 
	});
});
});
});
