  function fnMouseEvent(divID,eventName,value)
    {
        var obj = document.getElementById(divID);
       // if(obj == "[object]")
        //{
            if(value == 1 && eventName == "in")
            {
                obj.className="container1rol";
                obj.innerHTML="<br>Sutherland helped a Card<br>issuer increases collections by<br>USD 5 million per annum.";
            }
            if(value == 1 && eventName == "out")
            {
                obj.className="container1";
                obj.innerHTML="<br><br>Apply analytics to gain<br>insight and improve results";
            }
            if(value == 2 && eventName == "in")
            {
                obj.className="container2rol";
                obj.innerHTML="<br>The world&rsquo;s leading logistics group<br>increased recovery up to 90% while<br>reducing cash leakage by nearly $2<br>million per year.";
            }
            if(value == 2 && eventName == "out")
            {
                obj.className="container2";
                obj.innerHTML="<br><br>Integrate your back<br>and front office";
            }
			if(value == 3 && eventName == "in")
            {
                obj.className="container3rol";
                obj.innerHTML="<br>A leading national real estate<br>investment firm has grown revenues<br>60% in the last 5 years by focusing<br>on their core competency.";
            }
            if(value == 3 && eventName == "out")
            {
                obj.className="container3";
                obj.innerHTML="<br><br>Focus on your core business<br>with our F&amp;A Outsourcing solutions";
            }
			if(value == 4 && eventName == "in")
            {
                obj.className="container4rol";
                obj.innerHTML="<br>The second largest online retailer in<br>the UK reduced refunds and replace-<br>ments to less than one percent<br>against units shipped.";
            }
            if(value == 4 && eventName == "out")
            {
                obj.className="container4";
                obj.innerHTML="<br><br>Customizable, <br>smart technology platforms";
            }
       // }
        
    }
