	$(document).ready(function() {
		
		var nthChildSupported = function() {
			var tbl = $("<table id='nth_child'><tbody><tr><td></td></tr><tr><td></td></tr></tbody></table>")
					  .css({position : "absolute", left : "-9999em"})
					  .appendTo("body"),
		 
			tblStyle = $("<style>#nth_child tr:nth-child(odd) { background-color:#eee; }</style>")
					  .appendTo("head"),
		 
			backgroundColor = $("#nth_child tbody tr:first")
					  .css("background-color"),
		 
			supported = (backgroundColor === "rgb(237, 236, 236)") || (backgroundColor === "#eee");                  
		 
			$(tbl).remove();
			$(tblStyle).remove();
		 
			return supported;
		};
				
		if(!nthChildSupported()) {
			$("#stats_tbl tbody tr:even td").addClass("odd");
		};
		
		$('#about h2 a').addClass('here');
		
		$('#about > ul').removeClass('liftoff').addClass('landing');
		
		$('ul.liftoff').hide();
		
		$('#postcon').mouseover(function() {
			$('#postcon ul.liftoff').show();
			$('#postcon h2 a').addClass('here');
			$('#about ul.landing').hide();
			$('#about h2 a').removeClass('here');
		})
		
		$('#postcon').mouseout(function() {
			$('#postcon ul.liftoff').hide();
			$('#postcon h2 a').removeClass('here');
			$('#about ul.landing').show();
			$('#about h2 a').addClass('here');
		})
		
		$('#govt').mouseover(function() {
			$('#govt ul.liftoff').show();
			$('#govt h2 a').addClass('here');
			$('#about ul.landing').hide();
			$('#about h2 a').removeClass('here');
		})
		
		$('#govt').mouseout(function() {
			$('#govt ul.liftoff').hide();
			$('#govt h2 a').removeClass('here');
			$('#about ul.landing').show();
			$('#about h2 a').addClass('here');
		})
		
		$('#about').mouseover(function() {
			$('#about ul.landing').show();
			$('ul.liftoff').hide();
		})
		
		$('#infra').mouseover(function() {
			$('#infra ul.liftoff').show();
			$('#infra h2 a').addClass('here');
			$('#about ul.landing').hide();
			$('#about h2 a').removeClass('here');
		})

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

		$('#prod').mouseout(function() {
			$('#prod ul.liftoff').hide();
			$('#prod h2 a').removeClass('here');
			$('#about ul.landing').show();
			$('#about h2 a').addClass('here');
		})
		
    });




