﻿$(document).ready(function () {
    $('#grid_content a[title]').each(function () {
        $(this).qtip(
		{
		    content: $(this).attr('title'),
		    style:
			{
			    tip: true,
			    background: '#edebeb',
			    color: 'black',
			    textAlign: 'center',
			    border:
				{
				    width: 3,
				    radius: 5,
				    color: '#9acd65'
				}
			},
		    position:
			{
			    corner:
				{
				    target: 'rightTop',
				    tooltip: 'leftBottom'
				}
			}
		}
		).removeAttr('title');
    });

});
