$(document).ready(function(){
	$("#minitip").qtip({
	   content: {
	      url: 'mini-text.html'
	   },
	   style: {
	   	margin: 5,
	   },
      position: {
	      corner: {
	         target: 'topMiddle',
	         tooltip: 'bottomMiddle'
	      }
	   }
	});
	
		$("#miditip").qtip({
	   content: {
	      url: 'midi-text.html'
	   },
	   style: {
	   	margin: 5,
	   },
      position: {
	      corner: {
	         target: 'topMiddle',
	         tooltip: 'bottomMiddle'
	      }
	   }
	});
	
		$("#maxitip").qtip({
	   content: {
	      url: 'maxi-text.html'
	   },
	   style: {
	   	margin: 5,
	   },
      position: {
	      corner: {
	         target: 'topMiddle',
	         tooltip: 'bottomMiddle'
	      }
	   }
	});
}); 
