this.tooltip = function(){	
	jQuery('#mySocial ul li a').qtip({
      content: {
         text: "teste" // Use each elements title attribute
      },
      style: {
	      border: {
	         width: 5,
	         radius: 10
	      },
	      padding: 10, 
	      textAlign: 'center',
	      tip: true, // Give it a speech bubble tip with automatic corner detection
	      name: 'cream' // Style it according to the preset 'cream' style
	   }
   });		
};


// starting the script on page load
jQuery(document).ready(function(){
	//tooltip();
	//jQuery('body').css('color','#ffffff');
	

	jQuery.featureList(
		$("#tabs li a"),
		$("#output li"), {
			start_item	:	1
		}
	);

});

