$(document).ready(function(){
  		 
    	$.fn.qtip.styles.formhelp = { // Last part is the name of the style
		    background: '#363636',
		    color: '#FFFFFF',
		    width: 200,
		    textAlign: 'center',
		    'font-size': 11,
		    'line-height': 1.5,
		    padding: 5,
		    border: {
		           width: 2,
		      	   radius: 4,
			   color: '#4f4f4f'
		    },
		    tip: {
		    	corner: 'leftMiddle',
		    	size: {
		    		x:8,
		    		y:20
		    	}
		    }
		}
    		 
    		 
 		 
    		 $("#left-nav a[title]").qtip({  
    		 		 style: 'formhelp',
			         position: {
			            corner: {
			               target: 'rightMiddle',
			               tooltip: 'leftMiddle'
			            }
			         },			         
			         show: { 
			         	effect: { 
			         		type: 'fade' 
			         		} 
			         },
			         hide: { 
			         	delay: 0,
			         	effect: 'fade'
			         }
			       
		    });

    	

 });    