﻿// http://craigsworks.com/projects/qtip/docs/tutorials
$('#virtual-tour');
$('#virtual-tour').qtip({
	content: 'Take a Virutal Tour of Bonaire',
	show: 'mouseover',
	hide: 'mouseout',
	style: {
		tip: {
			corner: 'topLeft',
			color: '#6699CC',
			size: {
				x: 20,
				y: 8
			}
		},
		border: {
			width: 1,
			radius: 2,
			color: '#6699CC'
		}
	},
	position: {
		corner: {
			target: 'bottomMiddle',
			tooltip: 'topLeft'
		}
	}
});

$('#gallery');
$('#gallery').qtip({
	content: 'Visit the Bonaire 2010 Media Gallery',
	show: 'mouseover',
	hide: 'mouseout',
	style: {
		tip: {
			corner: 'topLeft',
			color: '#6699CC',
			size: {
				x: 20,
				y: 8
			}
		},
		border: {
			width: 1,
			radius: 2,
			color: '#6699CC'
		}
	},
	position: {
		corner: {
			target: 'bottomMiddle',
			tooltip: 'topLeft'
		}
	}
});

$('#googleEarth');
$('#googleEarth').qtip({
	content: 'View Bonaire on Google Earth',
	show: 'mouseover',
	hide: 'mouseout',
	style: {
		tip: {
			corner: 'topLeft',
			color: '#6699CC',
			size: {
				x: 20,
				y: 8
			}
		},
		border: {
			width: 1,
			radius: 2,
			color: '#6699CC'
		}
	},
	position: {
		corner: {
			target: 'bottomMiddle',
			tooltip: 'topLeft'
		}
	}
});
