$().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: -14, y: -2 }
		},
		style: {
			border: {
				width: 0,
				radius: 0
			},
			background: '#32A44F',
			padding: 10,

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

	$('#menu_container .menu_item a').hover(
		function() {
			$(this).children('.mleft').css('background-image','url('+PAGE_PATH+'images/menu_active_left.png)');
			$(this).children('.mright').css('background-image','url('+PAGE_PATH+'images/menu_active_right.png)');
		},
		function() {
			$(this).children('.mleft').css('background-image','');
			$(this).children('.mright').css('background-image','');
		}
	);
});