﻿
$(document).ready(function() {
	$(".CalloutSmall img").qtip({
		content: $(this).attr('alt'),
		style: {
			name: 'dark',
			background: '#e8edf7',
			border: {
				width: 1,
				radius: 5
			},
			color: '#1c3664',
			tip: 'rightMiddle'
		},
		position: {
			corner: {
				target: 'leftMiddle',
				tooltip: 'rightMiddle'
			}
		}
	});
});