$(document).ready(function(){

// RUN SLIDESHOW

$('#slideshow').cycle({ 
    speed:3000, // speed of the transition (any valid fx speed value)
	timeout:7000 // milliseconds between slide transitions (0 to disable auto advance) 
}); 

// WHAT HAPPENS WHEN YOU CLICK A LITTLE BUTTON AT BOT OF SLIDESHOW

$('#goto1b,#goto1c,#goto1d').click(function() {
    $('#slideshow').cycle(0);
    return false;
});

$('#goto2a,#goto2c,#goto2d').click(function() {
    $('#slideshow').cycle(1);
    return false;
});

$('#goto3a,#goto3b,#goto3d').click(function() {
    $('#slideshow').cycle(2);
    return false;
});

$('#goto4a,#goto4b,#goto4c').click(function() {
    $('#slideshow').cycle(3);
    return false;
});

// --------------------------------------------------------------------
}); // end JQ document ready
