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