﻿
        function MouseGoneIn(Region)
        {
            
            switch (Region)
            {
                case "home_what_we_do_image" :
                    {document.getElementById('home_what_we_do_image').className='hovered';return;}
                case "home_services" :
                    {document.getElementById('home_services').className='hovered';return;}
                case "home_the_team" :
                    {document.getElementById('home_the_team').className='hovered';return;}
                case "home_associates" :
                    {document.getElementById('home_associates').className='hovered';return;}
                case "home_cost" :
                    {document.getElementById('home_cost').className='hovered';return;}
                case "home_news" :
                    {document.getElementById('home_news').className='hovered';return;}
                case "home_contact" :
                    {document.getElementById('home_contact').className='hovered';return;}
            }
        }
        function MouseGoneOut()
        {
            document.getElementById('home_what_we_do_image').className='';
            document.getElementById('home_services').className='';
            document.getElementById('home_the_team').className='';
            document.getElementById('home_associates').className='';
            document.getElementById('home_cost').className='';
            document.getElementById('home_news').className='';
            document.getElementById('home_contact').className='';
        }
