// Create the tooltips only on document load
$(document).ready(function() 
{
   // Match all link elements with href attributes within the content div
   $('#footerleft a[href]').qtip(
   {
      content: '<p class="special">Copyrights of the magazine are the property of Veronika Hauer & Fatos Ustek.</p><p class="special">All rights of the contributions are the property of their contributors.</p>', // Give it some content, in this case a simple string
	  position: {
	      corner: {
	         target: 'topRight',
	         tooltip: 'bottomLeft'
	      }
	   }
 });
});