﻿$('p[title]').qtip({
	position: {
		corner: {
			target: 'topMiddle',
			tooltip: 'bottomLeft'
		}
	},
	style: {
	    name: 'dark',
	    background: 'black',
	    color: 'white',
		tip: true,
		border: {
			width: 1,
			radius: 3,
			color: '#E95F13'
		}
	}
})
$('th[title]').qtip({
    position: {
        corner: {
            target: 'topLeft',
            tooltip: 'bottomLeft'
        }
    },
    style: {
        name: 'dark',
        background: 'black',
        color: 'white',
        tip: true,
        border: {
            width: 1,
            radius: 3,
            color: '#E95F13'
        }
    }
})
//$('button[title]').qtip({
//	position: {
//		corner: {
//			target: 'topRight',
//			tooltip: 'bottomLeft'
//		}
//	},
//	style: {
//		name: 'dark',
//		tip: true,
//		border: {
//			width: 1,
//			radius: 3,
//			color: '#000'
//		}
//	}
//})

