window.addEvent('domready', function(){
	// Latest reportages
	if ($('slideshow'))
	{
		var slideshow = new HorizontalSlideshow('slideshow', 
												'report_content', 
												'report_block', 
												'navigation', 
												{'css' : {'left_arrow': 'previous',
															'right_arrow':'next'},
												'auto_scrolling': {'active': false}
												}
												);
		slideshow.jumpToElement(0);
	}
	// Agenda
	var slideshow2 = new HorizontalSlideshow('agenda_slide', 
											'agenda_content', 
											'agenda_block', 
											'agenda_navigation', 
											{'css' : {'left_arrow': 'previous',
														'right_arrow':'next'},
											'auto_scrolling': {'active': false}
											}
											);
	slideshow2.jumpToElement(0);
});