$(document).ready(function(){
	$('ul#yarnShots li a[href][title]').qtip({
		content: {
			text: false // Use each elements title attribute
		},
		position: {
			corner: {
				target: 'rightMiddle',
				tooltip: 'leftMiddle'
			}
		},
		style: { 
			tip: 'leftMiddle',
			padding: 10,
			background: '#ffb514',
			color: '9a1c00',
			textAlign: 'center',
			border: {
				color: '#9a1c00'
			},
			name: 'cream' // Inherit the rest of the attributes from the preset dark style
		}
	});
});