/*
 * Functionality for the home page only.
 */

$(function() {
	// Documentation at http://www.malsup.com/jquery/cycle/lite/
	$('#slideshow').cycle({ 
	    speed:    4000,   // How long the fade lasts (a portion of timeout ... doesn't add to it).
	    timeout:  8000,  // How long for each slide.
	    delay:    1200   // How long to linger on the first slide.
	});
})
