
function floatNavTo(xPos) {

	
	$('#floating_nav_element').hide();
	$('#floating_nav_element').stop();
	moveNav(xPos);
	
	//$('#floating_nav_element').delay(200).slideDown();
	
	$('#floating_nav_element').animate({ height: '30' }, 200);
	
};

function hideNav() {
	$('#floating_nav_element').stop();
	
	$('#floating_nav_element').animate({ height: '0' }, 200);
	
	//$('#floating_nav_element').slideUp(200);
};

function moveNav(xPos) {
	$('#floating_nav_element').css('left', xPos);
};
