$(document).ready(function() {

	$('#Navigation ul li a').mouseenter(
		function(e) {

			var a = $(this);
			var ol = a.next('ol');
			var li = $('#Navigation ul li');
			
			if(ol.length === 0)
				return;

			ol.show();
			$(this).parent().addClass('over');
		}
	).mouseleave(
		function(e) {
			var a = $(this);
			var ol = a.next('ol');
			var li = $('#Navigation ul li');
			
			ol.hide();
			$(this).parent().removeClass('over');
		}
	);
	
	$('#Navigation ul li ol').mouseenter(
		function(e) {
			$(this).show();
			$(this).parent().addClass('over');
		}
	).mouseleave(
		function(e) {
			$(this).hide();
			$(this).parent().removeClass('over');
		}
	);
	
	$('#Navigation ul li ol li').mouseenter(
		function(e) {
			$(this).css('background-color','#4989bb');
		}
	).mouseleave(
		function(e) {
			$(this).css('background-color','none');
		}
	);

	
});
