// Create the tooltips only on document load

$(document).ready(function() 
{
   // Match all link elements with href attributes within the Piano class 

   $('.Piano a[href]').qtip(
   {
      content: 'Some basic content for the tooltip', // Give it some content, in this case a simple string




 style: { 
      width: 200,
      padding: 5,
      color: 'white',
      textAlign: 'center',
      border: {
         width: 3,
         radius: 5,
         color: '#000'
      },
      tip: 'leftTop',
      name: 'dark', // Inherit the rest of the attributes from the preset dark style
	font: {
	        color: '#FFFFFF'
		},
 
  },


 // Position
	position: {
     	 corner: {
         target: 'topRight',
         tooltip: 'leftMiddle',


 
    }}
 



	  
   });
});

