// Only create tooltips when document is ready
$(document).ready(function() {
	$(".module.last img.facebook").qtip({
		hide: {
			fixed: true,
			delay: 500
		},
		style: {
			padding: 10,
			background: '#e6e6e4',
			color: '#656263',
			textAlign: 'left',
			fontSize: '13px',
			border: {
				width: 4,
				radius: 6,
				color: '#8cbd40'
			},
			//tip: 'bottomLeft'
		},
		content: '<a target="_blank" href="http://www.facebook.com/MaltOMealFanPage">Malt-O-Meal Cereal</a><br /><a target="_blank" href="http://www.facebook.com/BlueberryMuffinTopsFanPage">Blueberry Muffin Tops</a><br /><a target="_blank" href="http://www.facebook.com/3SistersCereal">Three Sisters Cereal</a>',
		position: {
			corner: {
				target: 'topLeft',
				tooltip: 'bottomLeft'
			}
		}
	});
	
	$(".module.last img.twitter").qtip({
		hide: {
			fixed: true,
			delay: 500
		},
		style: {
			padding: 10,
			background: '#e6e6e4',
			color: '#656263',
			textAlign: 'left',
			fontSize: '13px',
			border: {
				width: 4,
				radius: 6,
				color: '#8cbd40'
			},
			//tip: 'bottomLeft'
		},
		content: '<a target="_blank" href="http://twitter.com/MaltOMealCereal">Malt-O-Meal Cereal</a><br /><a target="_blank" href="http://twitter.com/BBMT_Cereal">Blueberry Muffin Tops</a><br /><a target="_blank" href="http://twitter.com/3SistersCereal">Three Sisters Cereal</a>',
		position: {
			corner: {
				target: 'topLeft',
				tooltip: 'bottomLeft'
			}
		}
	});
	
	$(".module.last img.youtube").qtip({
		hide: {
			fixed: true,
			delay: 500
		},
		style: {
			padding: 10,
			background: '#e6e6e4',
			color: '#656263',
			textAlign: 'left',
			fontSize: '13px',
			border: {
				width: 4,
				radius: 6,
				color: '#8cbd40'
			},
			//tip: 'bottomLeft'
		},
		content: '<a target="_blank" href="http://www.youtube.com/maltomealcereal">Malt-O-Meal Cereal</a>',
		position: {
			corner: {
				target: 'topLeft',
				tooltip: 'bottomLeft'
			}
		}
	});
});
