jQuery(document).ready(function(){
	jQuery('#myListAgenda').css('marginLeft','0');
	var totIncrement		= 0;
	var increment			= 224;
	var maxRightIncrement	= increment*(-1);
	
	jQuery('#prevColumn').hide();
	
	jQuery('#previousAgenda,#prevColumn').click(function(){
		if(totIncrement<0){
			jQuery('#prevColumn').hide();
			jQuery('#nextColumn').show();
			totIncrement = totIncrement+increment;
			jQuery('#myListAgenda').animate(
			  { 
				marginLeft: totIncrement
			  },1000);
		}
	});			  	  		
	
	jQuery('#nextAgenda,#nextColumn').click(function(){
		if(totIncrement>maxRightIncrement){
			jQuery('#prevColumn').show();
			jQuery('#nextColumn').hide();
			totIncrement = totIncrement-increment;
			jQuery('#myListAgenda').animate(
			  { marginLeft: totIncrement },
			  1000);
		}
	});	
});
