
  $(function() {
    $('a[title]').qtip({ 
					position: {
						corner: {
							target: 'topMiddle',
				 			tooltip: 'bottomMiddle'
						},
						adjust:{
							x:0,
							y:-20
						},
		 			},
					style: {
						width:{
							min:20,
							max:120
							},
						textAlign: 'center',	
						background: '#000',
						color: '#fff',
						tip:{
							corner: 'bottomMiddle',
							size: { x: 12, y: 8 }
						},
						border: {
							width: 2,
							radius: 4,
							color: '#7f7f7f'
						}
					},
					show: {
						effect: {
							type: 'fade',
							length:1000
							}
						},
					hide: {
						effect: {
							type: 'fade',
							length:1000
							}
						}
					})
				});
