$(document).ready(function() {
	showSub();
	showSubGeel();
	initSlideshow();
	initSlideshowKlein();
});

function showSub() {	
	$('.menu_item').hover(function(){
		$(this).children(".submenu").show();
	},function(){
		$(this).children(".submenu").hide();
	});
}

function showSubGeel() {	
	$('.menu_geel').hover(function(){
		$(this).children(".submenu").show();
	},function(){
		$(this).children(".submenu").hide();
	});
}

function initSlideshow() {
	$('.slider .foto_container_groot').cycle({
		fx:     'fade',
		timeout: 1500,
		speed:	 2000
	});
}

function initSlideshowKlein() {
	$('.header_sfeer .foto_container_klein').cycle({
		fx:     'fade',
		timeout: 1500,
		speed:	 2000
	});
}




