$(document).ready( function() {

	

	// load the menu html into the page

	$.ajaxSetup({cache:false});

	$.get('../site.nav.inc.html', function(data) {

		

		$('#navigation').html(data);

		

		$('#nav .menu .link').hover( 

			function() {

				$(this).addClass('hover');

				$(this).siblings('.drop-down').show();

			}, function() {

				$(this).removeClass('hover');

				$(this).siblings('.drop-down').hide();

			}

		);

		

		$('#nav .menu .drop-down').hover(

			function() {

				$(this).show();

				$(this).siblings('.link').addClass('hover');

			},

			function() {

				$(this).siblings('.link').removeClass('hover');

				$(this).hide();

			}

		);

	});

	

	

	

});
