	$(document).ready(function()
		{
			$('area').each(function()
			{
			var content= '<p>';
			content+= $(this).attr('alt');
			content+= '</p>';
			content+= '<p><img src="http://jasonsantamaria.com/i/reading/';
			content+= $(this).attr('title');
			content+= '.jpg" class="book-thumb-tip"></p>';

				$(this).qtip(
	      		{
				show: { delay: 10 },
				content: content,
	         	position: {
	            	target: 'mouse', // Position the tooltip above the link
	            	corner: {
	            		tooltip: 'topMiddle'
	            		},
	            		adjust: {
							x: 100, y: 20,
							screen: true // Keep the tooltip on-screen at all times
	            		}
	         		},
			  	style: {
		      		width: 200,
		      		padding: 5,
		      		background: '#000000',
		      		color: '#FFFFFF',
		      		textAlign: 'center',
		      		border: {
		         		width: 7,
		         		radius: 5,
		         		color: '#000000'
		      		},
	         	}
	      })
	   })
	.removeAttr('title');
	});