jQuery.noConflict();
jQuery(document).ready(function() {

// Showcase tooltip
jQuery('#w-clients img[title]').qtip({
	style: {
		padding: 5,
		background: '#ffe157',
		color: '#796400',
		border: {
			radius: 5,
			color: '#ffee9f'
		},
		tip: 'topMiddle'
	},
	position: {
		corner: {
			tooltip: 'topMiddle',
			target: 'bottomMiddle'
		}
	}
});

// Screenshot tooltip
jQuery('.screenshot[title]').qtip({
	style: {
		padding: 5,
		background: '#ffe157',
		color: '#796400',
		border: {
			radius: 5,
			color: '#ffee9f'
		},
		tip: 'topMiddle'
	},
	position: {
		corner: {
			tooltip: 'topMiddle',
			target: 'bottomMiddle'
		}
	}
});

// Navigation tabs
jQuery('.tab[title]').qtip({
	style: {
		'font-size': '11px',
		'font-weight': 'bold',
		'line-height': '1.5em',
		padding: 5,
		background: '#ddd',
		color: '#333',
		border: {
			width: 1,
			radius: 5,
			color: '#ddd'
		},
		tip: 'topMiddle'
	},
	position: {
		corner: {
			tooltip: 'topMiddle',
			target: 'bottomMiddle'
		}
	}
});

});