// JavaScript Document



/*
 * REMOVE TOOLTIPS
 */

$(document).ready(function () {
	$("a").removeAttr("title");
	$("img").removeAttr("title");
});



/*
 * qTip attributes
 */

$(document).ready(function() {
		$('img.tiptop[xtip]').qtip({
			style: {
				name: 'dark',
				tip: true,
				target: 'topMiddle',
				border: { width: 5, radius: 8 },
				padding: 10,
				textAlign: 'center'
			},
			position: { corner: { target: 'topMiddle', tooltip: 'bottomMiddle' } }
		});
	});
$(document).ready(function() {
		$('a.tiptop[xtip]').qtip({
			style: {
				name: 'dark',
				tip: true,
				target: 'topMiddle',
				border: { width: 5, radius: 8 },
				padding: 10,
				textAlign: 'center'
			},
			position: { corner: { target: 'topMiddle', tooltip: 'bottomMiddle' } }
		});
	});
$(document).ready(function() {
		$('img.tiptopleft[xtip]').qtip({
			style: {
				name: 'dark',
				tip: true,
				target: 'topLeft',
				border: { width: 5, radius: 8 },
				padding: 10,
				textAlign: 'center'
			},
			position: { corner: { target: 'topLeft', tooltip: 'bottomRight' } }
		});
	});
$(document).ready(function() {
		$('a.tiptopleft[xtip]').qtip({
			style: {
				name: 'dark',
				tip: true,
				target: 'topLeft',
				border: { width: 5, radius: 8 },
				padding: 10,
				textAlign: 'center'
			},
			position: { corner: { target: 'topLeft', tooltip: 'bottomRight' } }
		});
	});
$(document).ready(function() {
		$('img.tipbottom[xtip]').qtip({
			style: {
				name: 'dark',
				tip: true,
				target: 'bottomMiddle',
				border: { width: 5, radius: 8 },
				padding: 10,
				textAlign: 'center'
			},
			position: { corner: { target: 'bottomMiddle', tooltip: 'topMiddle' } }
		});
	});
$(document).ready(function() {
		$('a.tipbottom[xtip]').qtip({
			style: {
				name: 'dark',
				tip: true,
				target: 'bottomMiddle',
				border: { width: 5, radius: 8 },
				padding: 10,
				textAlign: 'center'
			},
			position: { corner: { target: 'bottomMiddle', tooltip: 'topMiddle' } }
		});
	});
$(document).ready(function() {
		$('img.tipbottomleft[xtip]').qtip({
			style: {
				name: 'dark',
				tip: true,
				target: 'bottomLeft',
				border: { width: 5, radius: 8 },
				padding: 10,
				textAlign: 'center'
			},
			position: { corner: { target: 'bottomLeft', tooltip: 'topRight' } }
		});
	});
$(document).ready(function() {
		$('a.tipbottomleft[xtip]').qtip({
			style: {
				name: 'dark',
				tip: true,
				target: 'bottomLeft',
				border: { width: 5, radius: 8 },
				padding: 10,
				textAlign: 'center'
			},
			position: { corner: { target: 'bottomLeft', tooltip: 'topRight' } }
		});
	});
$(document).ready(function() {
		$('img.tipbottomright[xtip]').qtip({
			style: {
				name: 'dark',
				tip: true,
				target: 'bottomRight',
				border: { width: 5, radius: 8 },
				padding: 10,
				textAlign: 'center'
			},
			position: { corner: { target: 'bottomRight', tooltip: 'topLeft' } }
		});
	});
$(document).ready(function() {
		$('a.tipbottomright[xtip]').qtip({
			style: {
				name: 'dark',
				tip: true,
				target: 'bottomRight',
				border: { width: 5, radius: 8 },
				padding: 10,
				textAlign: 'center'
			},
			position: { corner: { target: 'bottomRight', tooltip: 'topLeft' } }
		});
	});
