// CLUETIP ////////////////////////////////////////////////


// caratteristiche
$(document).ready(function() {
  $('a#butn04').cluetip({
    hoverClass: 'highlight',
	showTitle: false,
    sticky: true,
    closePosition: 'top',
    closeText: '<img src="./img/ico-chiudi.gif" alt="close" width="9" height="9" onclick="rimuovi_current(this)"/>',
	activation: 'click', 
	width: 660,
   	topOffset: 50,
	leftOffset: -96,
	positionBy: 'fixed'
  });

//nome

  $('a#butn05').cluetip({
    hoverClass: 'highlight',
	showTitle: false,
    sticky: true,
    closePosition: 'top',
    closeText: '<img src="./img/ico-chiudi.gif" alt="close" width="9" height="9" onclick="rimuovi_current(this)"/>',
	activation: 'click', 
	width: 660,
   	topOffset: 50,
	leftOffset: -54,
	positionBy: 'fixed'
  });

// peso

  $('a#butn06').cluetip({
    hoverClass: 'highlight',
	showTitle: false,
    sticky: true,
    closePosition: 'top',
    closeText: '<img src="./img/ico-chiudi.gif" alt="close" width="9" height="9" onclick="rimuovi_current(this)"/>',
	activation: 'click', 
	width: 400,
   	topOffset: 50,
	leftOffset: -150,
	positionBy: 'fixed'
  });

//composizione

  $('a#butn03').cluetip({
    hoverClass: 'highlight',
	showTitle: false,
	cluezIndex: 99999, 
    sticky: true,
	hideLocal: false, //
    closePosition: 'top',
    closeText: '<img src="./img/ico-chiudi.gif" alt="close" width="9" height="9" onclick="rimuovi_current(this)"/>',
	activation: 'click', 
	width: 660,		
   	topOffset: 50,
	leftOffset: -90,
	positionBy: 'fixed',
	onShow:           function(ct, c){
	   inizializzaSlider();
	},
	ajaxCache:        false
	
  });

// impiego

  $('a#butn02').cluetip({
    hoverClass: 'highlight',
	showTitle: false,
	cluezIndex: 99999, 
    sticky: true,
	hideLocal: false, //
    closePosition: 'top',
    closeText: '<img src="./img/ico-chiudi.gif" alt="close" width="9" height="9" onclick="rimuovi_current(this)"/>',
	activation: 'click', 
	width: 660,
   	topOffset: 50,
	leftOffset: -60,
	positionBy: 'fixed',
	onShow: function(){
		inizializzaImpiego();
	},
	ajaxCache:        false
	
  });
  
  $('#menuRicerca-tessuto a').click(function(){
		$.scrollTo( $('#menuRicerca-tessuto'),500, '');
  	});
  
});