/*
 * Copyright (c) Lincoln Gbenga Olagbaju
 */


// Slideshow (the sliding thing on the frontpage)
$(document).ready(function() {
	$('.slideshow')
		.cycle({
			fx:   		'scrollHorz',
			prev:  		'#precedente',
			next: 	 	'#successivo',
			speed:		250,
	  		timeout: 	3000
	});
});

