/*
* Lets get this party started!
*/
jQuery(function($){
   $(".tip").tooltip({
	 cssClass: "tooltip",
	 delay : 0,   // time in milliseconds that you must leave the mouse over the link until the tooltip appears
	 duration : 500,  //time in milliseconds that the tooltip will stay visible after you remove the mouse over the link
	 xOffset : 5,
	 yOffset : 5,
	 opacity : 0,
	 fadeDuration: 200
	}); 
});