$('a.twitter img').qtip(
{
   position: {
      corner: {
         target: 'leftMiddle',
         tooltip: 'rightMiddle'
      },
      adjust: {
         y: -11
      }
   },
   style: {
      padding: '7px 10px',
      tip: true,
      fontWeight: 'bold',
      textAlign: 'center',
      name: 'cream'
   }
});

$('img.screenshot').qtip(
{
   position: {
      corner: {
         tooltip: 'topMiddle',
         target: 'bottomMiddle'
      }
   },
   style: {
      padding: '7px 10px',
      tip: true,
      textAlign: 'center',
      name: 'cream',
      width: 'auto'
   }
});

/* Christmas qTip
$(document.body).qtip(
{
	content: {
		text: '<img src="images/owlchristmas.png" alt="" />'
	},
	position: {
		corner: 'center'
	},
	show: {
		when: false,
		ready: true
	},
	hide: false,
	style: {
		name: 'dark',
		width: 520,
		background: '#404040',
		border: {
			color: '#ddd'
		}
	},
	api: {
		beforeRender: function()
		{
			var self = this;

			// Create a modal effect "blanket". Woohoo!
			$('<div id="qtip-blanket">')
				.css({
					position: 'absolute',
					top: $(document).scrollTop(), // Use the document scrollTop
					left: 0,
					height: '100%',
					width: '100%',

					opacity: 0.8,
					backgroundColor: 'black',
					zIndex: 5000  // Make sure the zIndex is below 6000 to keep it below tooltips!
				})
				.appendTo(document.body) // Append to the document body
				.hide()
				.click(this.hide); // Hide initially

				$(document).keydown(function(e){ if(e.keyCode === 27) self.hide() })
		},
		beforeShow: function()
		{
			// Show the modal "blanket"
			$('#qtip-blanket').fadeIn(this.options.show.effect.length);
		},
		beforeHide: function()
		{
			// Hide the modal "blanket"
			$('#qtip-blanket').fadeOut(this.options.show.effect.length);
		},
	}
})
*/