var ie = (window.ActiveXObject && document.all) ? true:false;
function ie_hover_in(o, c1, c2) 
{
		if (ie) {
				if (o.style.color+"X" == "X") o.style.color = c1;
				if (o.style.backgroundColor+"X" == "X") o.style.backgroundColor = c2;
				var t = o.style.backgroundColor;
				o.style.backgroundColor = o.style.color;
				o.style.color = t;
				o.style.borderColor = t; 
		}
}
function ie_hover_out(o) 
{
		if (ie) {
				var t = o.style.color;
				o.style.color = o.style.backgroundColor;
				o.style.borderColor = o.style.backgroundColor; 
				o.style.backgroundColor = t;
		}
}
/**
* IE n'implemente pas le min-height du CSS 2.0, cette methode permet d'émuler son comportement.
* @param id ID de l'element dont on doit fixer une hauteur minimum
* @param size Taille minimum de l'element en pixel
* @author Julien HABLOT
*/
function EmulationForIE_CSS_minheight(id,size){
		if (ie) {
				try {
						if (document.getElementById(id).offsetHeight < size){   
								document.getElementById(id).style.height = ""+size+"px";
						}
				}
				catch(e){;}
		}
}


