// Tool tips
$(document).ready(function() {

 	// Add tips to dynamic menu links
 	$("#menu_siteadmin_link > a").attr("title", "Click here to access your account to view, create and edit your entries.");
	$("#menu_logout_link > a").attr("title", "Don't forget to log out of your account when you are finished.");
	$("#menu_login_link > a").attr("title", "Log in to your Aikido Waza Journal account here.");

	$("#pages_nav a[title]").tooltip({

	tip: '#menutips', 

	position: 'bottom center',

	// tweak the position
	offset: [-5, 2],

	// use "slide" effect
	effect: 'slide',

	// bounce back when closed
	//bounce: true,

	// slide downwards
	direction: 'down',

	slideInSpeed: 50

	});
});
