/****************************************
 * Neoland
 * Global JavaScript
 ****************************************/

// Start closure to prevent namespace conflicts
;(function($) {

// Perform initial setup tasks when DOM is ready
$(document).ready( function() {
					
		
		   $('.info_produs a[tooltip]').livequery(function()
   {
      $(this).qtip({
         content: $(this).attr('tooltip'), // Use the tooltip attribute of the element for the content
		  position: {
                  corner: {
                     tooltip: 'leftMiddle' // Use the corner...
                  }
		       },
        style: { width: { max: 170 }, name: 'dark' }
      });
   });

 // ----------------------------------------------
		
});



// End closure
})(jQuery);

