// Create the tooltips only on document load
$(document).ready(function() 
{
      $('#kontener img[title]').qtip({
      content: {
         text: false // Use each elements title attribute
      },
         show: { 
            solo: true // Only show one tooltip at a time
         },
         style: {
            tip: true, // Apply a speech bubble tip to the tooltip at the designated tooltip corner
            name: 'light', // Use the default light style
            width:  {  
					max:800,
					}
         }

   });
});
