

$(document).ready(function() 
{
   $('.tooltip').each(function()
   {
   
	  $(this).click ( function() {
		return false;
	  });
	  
      $(this).qtip(
      {
         content: {
            text: '<img class="throbber" src="/fileadmin/vidaverde/css/images/ajax-loader.gif" alt="Loading..." />',
            url: $(this).attr('href'),
			prerender: true
         },
		position: {
			target: $(this).parents(".csc-default"), // false,
			corner: {
				target: 'leftMiddle',
				tooltip: 'rightMiddle'
			},
			adjust: {
				x: -10,
				y: 0,
				screen: false
			}
		},
		style: { 
			name: 'cream',
			tip: 'rightMiddle',
			width: 500,
			border: {
				width: 4,
				radius: 5
			}
		},
		show: { 
			effect: { 
				length: 500 
				} 
		},
		hide: { 
			effect: { 
				length: 500 
			} 
		}

      });
   });
});

