$(document).ready(function() {
    $('.slideshow').cycle({
		fx: 'scrollLeft', speed: 1500, timeout: 15000 // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
    
    $('#goto0').click(function() { 
        $('.slideshow').cycle(0); 
        return false; 
    }); 
     
    $('#goto1').click(function() {  
        $('.slideshow').cycle(1);  
        return false;  
    });
    
    $('#goto2').click(function() {  
        $('.slideshow').cycle(2);  
        return false;  
    });
    
    $('#goto3').click(function() {  
        $('.slideshow').cycle(3);  
        return false;  
    });
    
    $('#goto4').click(function() {  
        $('.slideshow').cycle(4);  
        return false;  
    });
});



