window.addEvent('domready', function() {
	var toolTips = new Tips($$('.tooltip'), {
		className: 'custom_tip', //default is null
	 	fixed: false,      //default is false
	 	offsets: {
		'x': 16,       //default is 16
		'y': -85        //default is 16
		},
	 	onShow: function(toolTipElement){
	    	toolTipElement.fade("in");
		},
		onHide: function(toolTipElement){
	    	toolTipElement.fade("out");
		}
	});
	var toolTips = new Tips2($$('.tooltip2'), {
		className: 'custom_tip', //default is null
	 	fixed: false,      //default is false
	 	offsets: {
		'x': 16,       //default is 16
		'y': -85        //default is 16
		},
	 	onShow: function(toolTipElement){
	    	toolTipElement.fade("in");
		},
		onHide: function(toolTipElement){
	    	toolTipElement.fade("out");
		}
	});
	
//	var i=1;
//	$each($$('.tooltip').get('rel'), function(which){
//		i++;		
//		if(which === "spit1") {		
//			document.getElementsByName('spit' + i).store('tip:text', '<img src="../img/final/icons/delete.png" alt="" />');
//			document.getElementsByName('spit' + i).store('tip:title', 'Here is a new title.');
//		}	
//	});

	
//	$$('.tooltip').store('tip:text', '<img src="../img/final/icons/delete.png" alt="" />');
//	$$('.tooltip').store('tip:title', 'Here is a new title.');
	
});
