$(document).ready(function() {
	$('#listIndus input:text[rel]').each(function()
	{
		$(this).qtip({
			content: { text: $(this).attr('rel') },
			show: {
				event:'mouseover',
				delay:0,
				effect: { type:'fade' }
			},
			hide: { event:'mouseout' },
			position: { corner: { target: 'leftMiddle', tooltip: 'rightMiddle'} },
			style: { name: 'blue', tip:true }
		});
	});

	$('span[rel].viewTooltip').each(function()
	{
		$(this).qtip({
			show: {
				event:'mouseover',
				delay:0,
				effect: { type:'fade' }
			},
			hide: { event:'mouseout' },
			content: { text: $(this).attr('rel') },
			position: { corner: { target: 'leftMiddle', tooltip: 'rightMiddle'} },
			style: { name: 'blue', tip:true }
		});
	});

	$('a[rel].viewThumb').each(function()
	{
		$(this).qtip({
			show: { when:'click', delay:0 },
			hide: { event:'mouseout' },
			content: { text: $(this).attr('rel') },
			position: {
				corner: { target:'leftMiddle', tooltip:'leftMiddle' },
				adjust: { x:20, y:0, screen: true }
			},
			style: {
				border: { width:3, radius:0, color:'#C8DEF3' },
				tip:false
			}
		});
	});
});
