$(function()
{
	chapterAds.init();
});

var chapterAds = 
{
	init:function()
	{
		$('.chapter-ads .chapters a').each(function(i)
		{
			$(this).click(function(e)
			{
				$('.chapter-ads .ad').fadeOut().eq(i).fadeIn('slow');
				$(this).addClass('active').siblings().removeClass('active');
			});
		});
		chapterAds.cycle();
	},
	cycle:function()
	{
		if(chapterAds.j >= $('.chapter-ads .chapters a').length)
		{
			chapterAds.j = 0;
		}
		$('.chapter-ads .chapters a:eq('+chapterAds.j+')').trigger('click');
		chapterAds.j++;
	},
	j:0
};
window.setInterval("chapterAds.cycle()",15000);