$(document).ready(function() {
	$('#check-it').slides({
		container: '#slides-container',
		play: 5000,
		hoverPause: true,
		preload: false,
		pause: 5000,
		effect: 'slide',
		slideSpeed: 500,
		slideEasing: 'jswing',
		generatePagination: true
	});

	$('#slides').hoverIntent(
		function () {
			$('a.left, a.right').fadeIn(600);
		},
		function () {
			$('a.left, a.right').fadeOut(600);
		}
	);
});
