$(document).ready(function(){

	$('ul#popular-posts li a[title]').qtip({
		show: {
			delay: '0',
			when: {
				event: 'mouseover'
			},
			effect: {
				type: 'show',
				length: '0'
			}
		},
		hide: {
			when: {
				event: 'mouseout'
			},
			effect: {
				type: 'hide',
				length: '0'
			}
		},
		position: {
			corner: {
			   target: 'topMiddle',
			   tooltip: 'bottomMiddle'
			},
		},
		style: {
			width: {
				max: '140'
			},
			background: '#222',
			color: '#fff',
			border: {
				width: '0'
			},
			tip: { 
				corner: 'bottomMiddle',
				color: '#222',
				size: {
					x: 10, 
					y : 5 
    			}
			}
		}
	});
	
});
