function generateToolTip(){
	$(document).ready(function() 
	{
	   // Notice the use of the each() method to acquire access to each elements attributes
	   $('[tooltip]').each(function()
	   {
	      $(this).qtip({
	         content: $(this).attr('tooltip'), // Use the tooltip attribute of the element for the content
	         style: {
	            border: {
	               width: 5,
	               radius: 8
	            },
	            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
	         },
		
			 position: {
	          	corner: {
	             		tooltip: 'leftTop', // Use the corner...
	                  	target: 'rightBottom' // ...and opposite corner
	                }
	           	},
			hide: {
			            fixed: true // Make it fixed so it can be hovered over
			        }
	      });
	   });
	});
    /*
	$(document).ready(function() 
	{
	   // Notice the use of the each() method to acquire access to each elements attributes
	   $('[tooltip]').each(function()
	   {
	      $(this).qtip({
	         content: $(this).attr('tooltip'), // Use the tooltip attribute of the element for the content
	         style: {
	            border: {
	               width: 5,
	               radius: 8
	            },
	            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
	         },
		
			 position: {
	          	corner: {
	             		tooltip: 'leftTop', // Use the corner...
	                  	target: 'rightBottom' // ...and opposite corner
	                }
	           	},
			hide: {
			            fixed: true // Make it fixed so it can be hovered over
			        },
	      });
	   });
	});
	*/
}