$(document).ready(function() {

	// DOCUMENT ONLOAD / DOM READY

	// QTIP
	jQuery('.tip[title]').each(function() {
		//jQuery(this).attr('alt', $(this).attr('title'));
		var data = jQuery(this).attr('alt');
		jQuery(this).qtip({
			content: data,
			position: {
				corner: {
					tooltip: 'bottomLeft',
					target: 'topRight'
				}
			},
			style: {
				border: {
					width: 1,
					radius: 10,
					color: '#2d353e'
				},
				fontFamily:	'Arial, Helvetica, sans-serif',
				fontSize: '12px',
				lineHeight: '18px',
				padding: 1,
				tip: true,
				background: '#2d353e',
				color: '#ffffff'
			}
		});
	});

});

