// JavaScript Document
		
$(document).ready(function() {
  Shadowbox.init();
	$.featureList(
		$("#tabs li a"),
		$("#output li"), {
			start_item	:	0
		}
	);
	
	$('.searchinput').watermark('Zoeken');
	$('.mail-neuwsletter').watermark('E-mail adres');
	$('.forumsearch').watermark('Doorzoek het forum');
	
	/*$("#navigatie li").hover(
		function(e){
			$(this).children("ul").hoverFlow(e.type , {"height": "show"}, "fast");
			start_timer();
		},
		function(e){
			$(this).children("ul").hoverFlow(e.type , {"height": "hide"}, "fast");
		}
	);*/
	
	// hide sub menus
	$('#navigatie li ul').addClass('hidden');

	// toggle sub menus on hover
	$('#navigatie li, #navigatie li object')
		.hover(function(e) {
			$(this).children('ul').hoverFlow(e.type, {
				'height': 'show',
				'marginTop': 'show',
				'marginBottom': 'show',
				'paddingTop': 'show',
				'paddingBottom': 'show' 
			} , 'fast');
		}, function(e) {
			$(this).children('ul').hoverFlow(e.type, {
				'height': 'hide',
				'marginTop': 'hide',
				'marginBottom': 'hide',
				'paddingTop': 'hide',
				'paddingBottom': 'hide' 
			} , 'fast').removeClass('show');
		});
});
