/*
 * INPUT VALUE(S):
 * - None 
 * 
 * DEVELOPER NOTE(S):
 * - This is the javascript for the slideshow component.  
 * - The effect fades in and out, and stops transitioning as soon as your mouse hovers over the image.
 */

$(document).ready(function() {

	$("div.slideshow").cycle({
		fx : "fade", 
		speed: 2500,
		timeout : 2500,
		pause : 1,
		prev: '#prevBttn',
		next: '#nextBttn'
	});
	
});
