var ewidth=295,busy=false,index=0,max=10
function prevMonth(){if(!busy){if((index-1)<0)return;busy=true;new Effect.Move('concertoverzicht',{x:ewidth,y:0,afterFinish:function(){busy=false;index--;Cookie.setData('index',index)}})}}
function nextMonth(){if(!busy){if((index+1)>max)return;busy=true;new Effect.Move('concertoverzicht',{x:-ewidth,y:0,afterFinish:function(){busy=false;index++;Cookie.setData('index',index)}})}};document.observe('dom:loaded',function(){var elements=$$('ul#concertoverzicht li');Cookie.init({name:'index'});if($('concertoverzicht')){$('concertoverzicht').setStyle({width:(elements.length*ewidth)+'px'});if(Cookie.getData('index')){index=Cookie.getData('index');busy=true;new Effect.Move('concertoverzicht',{x:-ewidth*index,y:0,afterFinish:function(){busy=false}})};$$('a.vorigemaand')[0].observe('click',function(evt){evt.stop();prevMonth()});$$('a.volgendemaand')[0].observe('click',function(evt){evt.stop();nextMonth()})}})
