function qTipInit(containerDivId)
{
    $(document).ready(function() 
    {
       // Notice the use of the each() method to acquire access to each elements attributes
       $('#' + containerDivId + ' .qtip').each(function()
       {
          $(this).qtip({
             content: $(this).attr('tooltip'), // Use the tooltip attribute of the element for the content
             position: {
                corner: {
                    target: 'topMiddle',
                    tooltip: 'bottomLeft'
                }
             },
             style: {
                border: {
                    width: 3,
                    radius: 3
                },
                tip: {
                    corner: 'bottomLeft'
                }
             }
          });
       });
    });
}
