/****************************************
 * 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' }
      });
   });

 // ----------------------------------------------
 
$('[id^="innerslider"]').each(function() {
			allstr = $(this).attr('id');
			number = allstr.substring(11,allstr.length);
			//console.log(number);
			$(this).easySlider({
				numericId: 		'controls' + number
			});

										  });
		
});




// End closure
})(jQuery);


