$(document).ready(function() {
	
	$('div.Menu ul li').bind('mouseover', function() {
		$(this).children('ul').show();
	}).bind('mouseout', function() {
		$(this).children('ul').hide();
	});

	$('div.Left div.Nieuws div.Container').cycle('fade');
	
});

function lidWordenDisplay( display ) {
	
	if( display == 'uit' ) {
		
		if( document.getElementById('lidWordenExtra').style.display == 'block' ) {
		
			document.getElementById('lidWordenExtra').style.display = 'none';
			
		}
		
	} else {
		
		document.getElementById('lidWordenExtra').style.display = 'block';
		
	}
	
}
