﻿$(document).ready(function () {

toolTipDisplay() ;
});

function toolTipDisplay() 
{
    $(document).ready(function () {
		$(".conseil").hover(function () {
			$(this).find("img").addClass("show");
			if($(this).is(".ecolo") && $(this).parent().find(".conseil").length >= 3) 
			{
				var test2 = $(this).parent().find(".conseil");
				$(this).parent().find(".conseil")[1].style.display = "none";
				$(this).parent().find(".conseil")[2].style.display = "none";
			}
			else
			{
				if($(this).is(".eco") && $(this).parent().find(".conseil").length >= 3) {
					$(this).parent().find(".conseil")[2].style.display = "none";
				}
			}
		  }, 
		  function () {
			$(this).find("img").removeClass("show");
			if($(".conseil").is(".ecolo") && $(this).parent().find(".conseil").length >= 3) {
				$(this).parent().find(".conseil")[1].style.display = "block";
				$(this).parent().find(".conseil")[2].style.display = "block";
			}
			else
			{
				if($(this).is(".eco") && $(this).parent().find(".conseil").length >= 3) {
					$(this).parent().find(".conseil")[2].style.display = "none";
				}
			}
		  }
		);
	});
}
  


