$(document).ready(function ( ) {
	
	$("#Navigation-Block li").hover (
		
		function ( ) {
			$(this).addClass("Navigation-Active");
		},
		function ( ) {
			$(this).removeClass("Navigation-Active");	
		}
									 
	);
	
	$('#Navigation-Block .children').each(function () {
		$(this).parent().eq(0).hoverIntent({
		timeout: 100,
		over: function () {
		var current = $('.children:eq(0)', this);
		current.slideDown(100);
		},
		out: function () {
		var current = $('.children:eq(0)', this);
		current.fadeOut(200);
		}
	
		});
	
	});
	
});
