
/* Gere le rollOver sur les complex_teasers_lists. */
function complexTeasersRollOver(overId, aId, aHref, aTarget, imgId, imgSRC)
	{
	   // Test de la methode utilisee
	   if(!document.getElementById) return;
	
	   // Identification de l'element
	   var oElem = document.getElementById(overId);
	   if(!oElem) return;
	   var oElem2 = document.getElementById(aId);
	   if(!oElem2) return;
	   var oElem3 = document.getElementById(imgId);
	   if(!oElem3) return;
	
	   // Definition d'origine
	   oElem2.href = aHref;
	   oElem2.target = aTarget;
	   oElem3.src = imgSRC;
	
	   // Comportement au survol ou a la prise du focus
	   oElem.onmouseover = function() { 
	   		oElem2.href = aHref;
	   		oElem2.target = aTarget;
	   		oElem3.src = imgSRC;
	   		};
	   oElem.onfocus = function() { 
	   		oElem2.href = aHref;
	   		oElem2.target = aTarget;
	   		oElem3.src = imgSRC;
	   		};
	
	   // Retour a l'etat d'origine
	   oElem.onmouseout = function() { 
	    	
	    	};
	   oElem.onblur = function() { 
	    	
	    	};
	}
	
	
/* Gere le rollOver sur les toolbox_teasers_list. */
function toolboxTeasersRollOver(oId, aId, aHref, aTarget, lId, label, sSRC, sOverSRC)
	{
	   // Test de la methode utilisee
	   if(!document.getElementById) return;
	
	   // Identification de l'element
	   var oElem = document.getElementById(aId);
	   if(!oElem) return;
	   var oElem2 = document.getElementById(lId);
	   if(!oElem2) return;
	   var oElem3 = document.getElementById(oId);
	   if(!oElem3) return;
	
	   // Definition du lien d'origine
	   oElem.href = aHref;
	   oElem.target = aTarget;
	   oElem2.innerHTML = label;
	   oElem3.src = sSRC;
	
	   // Comportement au survol ou a la prise du focus
	   oElem3.onmouseover = function() { 
	   		oElem.href = aHref;
	   		oElem.target = aTarget;
	   		oElem2.innerHTML = label;	
	   		oElem3.src = sOverSRC;
	   		};
	   oElem3.onfocus = function() { 
	   		oElem.href = aHref;
	   		oElem.target = aTarget;
	   		oElem2.innerHTML = label;	
	   		oElem3.src = sOverSRC;
	   		};
	
	   // Retour a l'etat d'origine
	   oElem3.onmouseout = function() { 
	    	oElem3.src = sSRC;
	    	};
	   oElem3.onblur = function() { 
	    	oElem3.src = sSRC;
	    	};
	}