$(document).ready(function(){
	$('#tip_imgpopup[alt]').each(function(){
		$(this).qtip({
			content: {
				text: '<img class="loader" src="/img/loading.gif" alt="Wczytywanie..." />',
				ajax: {
					url: $(this).attr('rel') // Use the rel attribute of each element for the url to load
				},
			},
			style: {
				classes: 'ui-tooltip-jtools big-img-popup clearfix',
			},
			position: {
	            at: 'right center', // Position the tooltip above the link
	            my: 'left center',
	            viewport: $(window) // Keep the tooltip on-screen at all times
	        },
			show: {
				 effect: false,
	          solo: true // Only show one tooltip at a time
	        },
	      hide: {
	      	event: 'unfocus'
	      }
		})
		//content: {
			//text:$('#tip_imgpopup[alt]').attr('title')+'<img src="img/loading.gif" alt="Wczytywanie..."/>',
			//attr: 'ajaxlink'
			//ajax:{
			//	url:'/pictures/big_img_popup/'+$('#tip_imgpopup[alt]').attr('ajaxlink'),
			//	type: 'GET',
			//	data: {id: $('#tip_imgpopup[alt]').attr('ajaxlink')}
			//}
		//},
		//position: {
		//	my: 'bottom center', // Position my top left...
		//	at: 'top center', // at the bottom right of...
		//},
		//style: {
		//	classes: 'ui-tooltip-jtools',
		//},
	})
});

