$(document).ready(function(){
	$('.machines a').qtip(
		{
			style:{
				name:'dark', tip:true,
				width: 350,
				border: {		         
		         radius: 5,
		         color: '#FFFFFF'
      	 		},
      	 		background: '#0B3947',
      	 		fontSize: '87%'
			},
			position: {
   				target: 'mouse',
   				adjust: {mouse:true, x:10, y:10},
   				corner: {
			      target: 'topMiddle',
			      tooltip: 'topRight'
				}
   			}
		}
	);
});

