$(function() {
	$("#accordion").accordion({
		header: 'div.header',
		autoHeight: false,
		active: false,
		collapsible: true,
		animated: 'slide'
	});

	$(".header:first").everyTime(10000, function() {
		$(".ui-accordion-content:first").show('slide', function() {
			$(this).hide('slide');
		});
	});

	$(".header").click(function() {
		$(".header:first").stopTime();
	});
});
