/* ---------------------------------------------------- */
/* JQuery												*/
/* ---------------------------------------------------- */
$jQuery(document).ready(function() 
{
	/*############################################################################
	Initialise SlideDeck system
	############################################################################ */
	$jQuery('.slidedeck').slidedeck({
		start: 1,				// The starting slide number
		speed: 1200, 			// one second for the sliding to complete
	    autoPlay: true, 		// auto play turned on
	    autoPlayInterval: 3500,	// the speed at which the panels automatically change
	    cycle: true,			// whether to restart the slides from the start, after reaching the end
	    index: false, 			// hide the spine numbers
	    transition: 'easeOutCirc' 	// slide transition style
	});
	
});

