﻿	






jQuery(document).ready(function() {
    jQuery('#slideshow').cycle({
	fx:    'fade',           //Choose your transition, many options at http://jquery.malsup.com/cycle/
	speed:   400,            // Transition speed, in milliseconds.
	timeout: 4000,           // How much time each slide gets, in milliseconds.
	next:   '#slideshow',    //This line lets user click to transition imgs, remove this line if you want to add links to the images instead.
	pause:  1                //This line pauses the slideshow when mouse is over it.
	});
});



