var headerTips = [];
$(function(){
	$('#header a').each(function() {
		$(this).data('tip', $(this).next().html());
	});
	$('#header li').hover(
		function() {
			$(this).addClass('hover');
	  }, 
	  function () {
		$(this).removeClass('hover');
	});
	$('#header a').hover(
	  function () {
		$target = $('#tip-container');
		$target.html($(this).data('tip'));
		$target.show();
	  }, 
	  function () {
	  $('#header a').stop(true, true);
		$target = $('#tip-container');
		$target.hide();
	  }
	);
});
