$().ready(function() {
	$('#menu_container_inner a[title],#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: 'leftBottom', // Use the corner...
				target: 'leftBottom' // ...and opposite corner
			},
			adjust: { x: 0, y: 56 }
		},
		style: {
			padding: 4,
			background: '#FF8800',
			color: '#fff',
			lineHeight: 2,
			fontSize:12,
			border: {
				width: 3,
				radius: 3,
				color: '#FF8800'
			}
		}
	});

	if ($('#container-1').length>0) $('#container-1').tabs();
});