				$(document).ready(function(){
					$("*[tooltiptext]").each(function() {
						$(this).attr("title","<div class=tooltipHeadingDiv>Info</div><div class=tooltipContentDiv>" + $(this).attr("tooltiptext") + "</div>");
					});
					$('*[tooltiptext]').tooltip(
						{
							tip: '#tooltipDiv',
							position: 'top right',
							offset: [5, 5]
						}
					);
				});

