/*******************************************************************************
 * FUNCIONALIDADES PARA O QTIP
 ******************************************************************************/
$(function(){
	$(".tooltip").qtip({
	content: $(this).attr["title"],
    position: {
       target: 'event' // Use the triggering element as the positioning target
    },
    show: {
       //target: elems
    },
	hide: {
		//effect: function () { $(this).slideUp(10, function(){ $(this).dequeue(); }); }
	},
	style: {
		classes: "ui-tooltip-fmk"
	},
    events: {
       //show: 
    }
 });
});
