$().ready(function() {
	$('#menu_container a[title]').qtip({
		data: { id: 5 },
		show: { when: 'mouseover', solo: true, ready: false },
		hide: { when: 'unfocus', fixed: true, delay: 300 },
		content: { prerender: true },
		text: false, // Use each elements title attribute
		position: {
			corner: {
				tooltip: 'leftTop', // Use the corner...
				target: 'leftBottom' // ...and opposite corner
			},
			adjust: { x: 0, y: 0 }
		},
		style: {
			border: {
				width: 0,
				radius: 0
			},
			background: '#D7C8B4',
			padding: 7
		}
	});
});