/************************************************************************************************************
Ajax dynamic list
Copyright (C) September 2005  DTHMLGoodies.com, Alf Magne Kalleland

This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.

This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA

Dhtmlgoodies.com., hereby disclaims all copyright interest in this script
written by Alf Magne Kalleland.

Alf Magne Kalleland, 2006
Owner of DHTMLgoodies.com
	
************************************************************************************************************/	
function showToolTip(choix,content,text){
		
	var obj = document.getElementById(choix);
	var obj2 = document.getElementById(content);
	obj2.innerHTML = text;
	obj.style.display = 'block';
	//var st = Math.max(document.body.scrollTop,document.documentElement.scrollTop);
	//if(navigator.userAgent.toLowerCase().indexOf('safari')>=0)st=0;
	if(navigator.userAgent.toLowerCase().indexOf('msie')>=0){
		obj.style.margin = 0 + 'px';
		switch (choix){			
			case 'rapidite' :
				obj.style.left = 710 + 'px';
	    		obj.style.top =  45 + 'px';
			break;
			case 'prix' :
				obj.style.left = 693 + 'px';
	    		obj.style.top =  106 + 'px';
			break;
			case 'produit' :
				obj.style.left = 795 + 'px';
	    		obj.style.top =  193 + 'px';
			break;
			case 'pro' :
				obj.style.left = 690 + 'px';
	    		obj.style.top =  205 + 'px';
			break;
			case 'vente' :
				obj.style.left = 470 + 'px';
	    		obj.style.top =  238 + 'px';
			break;
			case 'soin' :
				obj.style.left = 600 + 'px';
	    		obj.style.top =  272 + 'px';
			break;
			case 'access' :
				obj.style.left = 510 + 'px';
	    		obj.style.top =  335 + 'px';
			break;
			default:
			break;
		}
		
	}
	
	
}	

function hideToolTip(choix)
{
	document.getElementById(choix).style.display = 'none';
	
}
