	$(document).ready(function() {
		
		$('ul.liftoff').hide();
		
		$('#about').mouseover(function() {
			$('#about ul.liftoff').show();
			$('#about h2 a').addClass('here');
		})
		
		$('#about').mouseout(function() {
			$('#about ul.liftoff').hide();
			$('#about h2 a').removeClass('here');
		})
		
		$('#news').mouseover(function() {
			$('#news ul.liftoff').show();
			$('#news h2 a').addClass('here');
		})
		
		$('#news').mouseout(function() {
			$('#news ul.liftoff').hide();
			$('#news h2 a').removeClass('here');
		})
		
		$('#postcon').mouseover(function() {
			$('#postcon ul.liftoff').show();
			$('#postcon h2 a').addClass('here');
		})
		
		$('#postcon').mouseout(function() {
			$('#postcon ul.liftoff').hide();
			$('#postcon h2 a').removeClass('here');
		})
		
		$('#infra').mouseover(function() {
			$('#infra ul.liftoff').show();
			$('#infra h2 a').addClass('here');
		})

		$('#infra').mouseout(function() {
			$('#infra ul.liftoff').hide();
			$('#infra h2 a').removeClass('here');
		})
		
		$('#svcs').mouseover(function() {
			$('#svcs ul.liftoff').show();
			$('#svcs h2 a').addClass('here');
		})

		$('#svcs').mouseout(function() {
			$('#svcs ul.liftoff').hide();
			$('#svcs h2 a').removeClass('here');
		})
		
		$('#proj').mouseover(function() {
			$('#proj ul.liftoff').show();
			$('#proj h2 a').addClass('here');
		})

		$('#proj').mouseout(function() {
			$('#proj ul.liftoff').hide();
			$('#proj h2 a').removeClass('here');
		})
		
    });
