$('a.pause').click(function() {
    $('#items').cycle('pause');
});

$(function() {
    $('#items').cycle({
        fx: 'scrollLeft',
        timeout:  5000,
		speed:   2200,
        prev:    '.prev',
        next:    '.next'
    });    
});

$(function() {
    $('#left').cycle({
        fx: 'fade',
        timeout:  5000,
		speed:   2200,
        prev:    '.prev',
        next:    '.next'
    });    
});
