$(document).ready(function() {
	$('#kilo').cycle({
		pager: '#kiloNav'
	});
	$('#to').cycle({
		pager: '#toNav'
	});
    $('#ha').cycle({
		pager: '#haNav'
	});
	$('#ft').cycle({
		pager: '#ftNav'
	});
	$('#uw').cycle({
		pager: '#uwNav'
	});
	$('#fp').cycle({
		pager: '#fpNav'
	});
	$('#ft2').cycle({
		pager: '#ft2Nav'
	});
	$('#cc').cycle({
		pager: '#ccNav'
	});
	$('#tl').cycle({
		pager: '#tlNav'
	});
	$('#fr').cycle({
		pager: '#frNav'
	});
	$('#ht').cycle({
		pager: '#htNav'
	});
	$('#ac').cycle({
		pager: '#acNav'
	});
	$('#ad').cycle({
		pager: '#adNav'
	});
	$('#oc').cycle({
		pager: '#ocNav'
	});
	$('#dp').cycle({
		pager: '#dpNav'
	});
	$('#it').cycle({
		pager: '#itNav'
	});
});
$(document).ready(function() {
    $('.slideshow').cycle({
		fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		cleartype: true, 
		cleartypeNoBg: true,
		speed: 1000,
		timeout: 1000
	});
});
$('.slideshow').cycle({
    // options
}).cycle('pause');  // pause it immediately
$('#play').click(function() {
    $('#slideshow').cycle('resume');
});
