        $(function() {

            $('#nav_box a[title]').qtip({
                position: {
      				corner: {
         				target: 'bottomMiddle',
         				tooltip: 'topMiddle',
					},
					adjust: {
						x: 0, y: -4 }
                },
				
				show: { effect: { type: 'slide',
									length: 200 },								
						when: { event: 'mouseover' } },
				
                style: {
					padding: 5,
					background: '#FFFFCC',
					color: '#000',
					textAlign: 'center',
					border: {
						width: 3,
						radius: 0,
						color: '#990000',
					},
                    name: 'red',
                    tip: false
				}
				
            });
        });
		
		
		
		
		        $(function() {

            $('#circlenav a[title]').qtip({
                position: {
      				corner: {
         				target: 'bottomMiddle',
         				tooltip: 'topMiddle',
					},
					adjust: {
						x: 0, y: 8 },
						screen: true
                },
				
				show: { 
						delay: 1000,
						effect: { type: 'fade',
									length: 200 },								
						when: { event: 'mouseover' } },
				
                style: {
					padding: 3,
					background: '#FFFFCC',
					color: '#000',
					textAlign: 'center',
					border: {
						width: 1,
						radius: 0,
						color: '#990000',
					},
                    name: 'red',
                    tip: false
				}
				
            });
        });
