$(document).ready(function() {
	$('ul#nav li[title]').qtip({

		style: { 
			width: 150,
			height: 32,
			background: '#C51929 url(images/jpb_key_small.png) no-repeat -8px -12px',
			color: 'white',
			textAlign: 'right',
			'font-size': 16,
			border: {
				width: 1,
				radius: 5,
				color: '#B2BFD2'
			},
			name: 'light', tip: false,	
		},
		position: {
			corner: {
				target: 'topLeft',
				tooltip: 'leftMiddle',	
				adjust: {
					screen: true
				}
			}
		},
		show: { 
			effect: { 
				type: 'fade',
				length: 400
			}
		},

	})
});

