// JavaScript Document

jQuery(function() {
    // ** Initialize tabs
	var tabListId = "tabList";
	var elem = document.getElementById(tabListId);
	if(elem) {
		Tabs.init(tabListId);
	}
});

jQuery(document).ready(function (){							 
	jQuery(".leanBook a").tooltip({
		// use the fade effect instead of the default
		effect: 'fade',
		// make fadeOutSpeed similar to the browser's default
		fadeOutSpeed: 100,
		// the time before the tooltip is shown
		predelay: 200,
		// tweak the position
		position: "bottom right",
		offset: [-10, -35]
	});
});
