			$(document).ready(function(){
           	 	$(".ttip").qtip({
				   //content: 'Dark themes are all the rage!',
				   style: {
				   		width: 'auto',
						name: 'dark', // Inherit from preset style
						tip: 'bottomLeft', // Notice the corner value is identical to the previously mentioned positioning corners
						border: {
							width: 1,
							radius: 8,
							color: '#626262'
				      }
				   },
				   position: {
						corner: {
							target: 'topRight',
				    		tooltip: 'bottomLeft'
				      }
				   }
				});
       		 })