/**
 * Customiza a tag title com a formatação Tooltip do plugin qtip
 */

$( function(){
	
	$( 'a.balao-depoimento' ).qtip({
		
		style: {
			tip: true,
			classes: "ui-tooltip-light ui-tooltip-shadow"
		},
		
		position: {
			at: "right center",
			my: "left center"
		},
		
		show: {
			
			effect: function(offset) {
				
				// "this" refers to the tooltip
				$(this).fadeIn(); 
				
			}
		}
		
	});
	
});
