	$(document).ready(function() {
		$('.slideshow')
		.before('<div id="nav">')
		.cycle({
			fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
			speed:    1000, // defines the number of milliseconds it will take to transition from one slide to the next.
			timeout:  3000, // specifies how many milliseconds will elapse between the start of each transition
			pause: 1, // so that pauses when user hovers over a slide
			pager: '#nav' //instructs the plugin to create navigation elements, one for each slide, and add them to the container identified by the value of the pager option.
		});
	});
