﻿$(document).ready(function() {
	$('img.tipIcon').qtip({
		position: {
			corner: {
				target: 'leftTop',
				tooltip: 'rightBottom'
			}
		},
		style: {
			name: 'cream',
			padding: '7px 13px',
			width: {
				max: 210,
				min: 0
			},
			tip: true
		}
	});
});