function prephelp(){
	/*$(".info_icon").each(function(){
		key = $(this).attr('lowsrc');
		$(this).qtip({
		   content: {
		      url: 'http://admin.resonate.org.nz/help/text.php',
		      data: { 'key': key },
		      method: 'get'
		   },
		   position: {
			  corner: {
		         target: 'topMiddle',
		         tooltip: 'bottomLeft'
		      }
		   },
		   style: { 
			  border: {
			   	 width: 1,
		         radius: 5,
		         color: '#aeaeae'
		      },
		      width: 220,
			  tip: 'bottomLeft'
		   },
	
		   show: 'mouseover',
		   hide: 'mouseout'
	
		});
	});*/
	
	$(".info_icon[title]").tooltip({ position: "top center", opacity: 1, onShow:function(){ $('.tooltip:visible').text(''); }, onBeforeShow: function(){ var key = $(this.getTip()).text(); $.get('http://admin.resonate.org.nz/help/text.php',{'key':key},function(data){ $('.tooltip:visible').html(data); }); } });
}
