
$(document).ready(function() {
	$(".jstooltip").hoverIntent(pwshow, pwhide);	
	$(".jstooltip").parent().next("div").addClass('jstooltext').hide();
	function pwshow(){  $(this).parent().next("div").fadeIn(); }
	function pwhide(){ $(this).parent().next("div").fadeOut(); }
});
  

