$().ready(function() {
	$('#menu_container a[title]').qtip({
		show: 'mouseover',
		hide: { when: 'mouseout', 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: -15, y: -2 }
		},
		style: {
			border: {
				width: 2,
				radius: 5,
				color: '#6A4741'
			},
			background: '#EFDF54',
			padding: 5,
			tip: { // Now an object instead of a string
				corner: 'topRight', // We declare our corner within the object using the corner sub-option
				color: '#6A4741'
			},

			name: 'dark' // Style it according to the preset 'cream' style
		}
	});
});
