$(document).ready(function() {

	var winH = $(window).height();
	var miniH = $('#mini_nav').height();
	var miniPOS = (winH - miniH)/2
	$('#mini_nav').css('bottom', miniPOS);

	$('#mini_nav').hide();
	
	var target = $('#content').offset().top;
	$(window).scroll(function (event) {
		var scrolled = $(this).scrollTop();
		if ( scrolled >= target ) 
			{
				$('#mini_nav').fadeIn(500);
			} 
		else 
			{
				$('#mini_nav').fadeOut(300);
			}
	});

$('#mini_nav > li > a').each( function (){
		var linkTXT = $(this).text();
		$(this).parent('li').append('<div class="tip">'+linkTXT+'</div>');
		var tipH = $('.tip').outerHeight();
		var tipW = $('.tip').outerWidth();
		var offsetY = 0
		var offsetX = 36
		var tipY = (0 - tipH) + offsetY
		var tipX = (0 - tipW) + offsetX
		$('.tip').css('right', tipX);
		$('.tip').css('top', tipY);
		$('.tip').hide();
		$(this).attr('title','');
		$(this).mouseenter(function(){
			$(this).siblings('.tip').fadeIn(300);
		});
		$(this).mouseleave(function(){
			$(this).siblings('.tip').fadeOut(300);
		});
	});

}); //doc ready end

