 // Match all link elements with href attributes within the content div
 $(document).ready(function()
{

    $('li.ajax_block_product').each(function () {
        $(this).qtip({
			
           content: $('.'+$(this).attr('id')),
            style: {  classes: 'ui-tooltip ui-tooltip-rounded' },
			position: 
	  {my: 'left center',  // Position my top left...
      at: 'top right', // at the bottom right of...
      target: $(this) // my target)
   }
        });
    });



});


  

