// Create the tooltips only on document load
$(document).ready(function() 
{
/*
   // Match all link elements with href attributes within the content div
   $(".containsDescription2 span").qtip(
   {
      content: "Some basic content for the tooltip" // Give it some content, in this case a simple string
   });
*/


	//Pull the content for the tooltip from the title attribute
   $(".containsDescription span").qtip(
   {
      content: { text: false },
      show: { delay: 0 },
      style: { 
      		name: "cream",
      		width: { max: 300 },
      		border: { width: 1, radius: 2, color: '#DECA7E' },
      		title: { 'color': '#303030', 'background-color': '#f5f5b5' }
      	}
      		
   });

});
