$(document).ready(function () {


	$('#navigation ul').children('li').hover( // On hover
		function () {
			$(this).find('.navigation_options').stop().fadeIn('fast');
		},
		function () {
			$(this).find('.navigation_options').hide();
		}
	);
	$('.navigation_options').each(function () { // Voeg zeilen toe
		$(this).children().wrapAll('<div class="sails"></div>');
	});








});
