var BuildingFutures	= {
	
	UI: {}
	
};

BuildingFutures.UI.Navigation = function() {
	$('#header li a').mouseover(
		function() {
			$('#showhide').text($(this).attr('title'));
		}
	).mouseout(
		function() {
			$('#showhide').text('');
		}
	)
	
}

jQuery(function($) { BuildingFutures.UI.Navigation(); });