﻿//START OF HOME PAGE JAVASCRIPT


                    var pauseClose = false;
                    function closeFooterOnExit() { 
                            setTimeout("closeFooter()", 3500);
                    }


                    //when set to true, it wont close the
                    function dontClose(bool) {  
                        pauseClose = bool;
                    }

				     var isOpen = false;
				     function toggleFooter() {
				         
				         if (isOpen) {
				             closeFooter();
				         }
				         else {
				             openFooter(); 
				         }
				     }

				     function closeFooter() { 
				         if(!pauseClose && isOpen)
				         {
				            $('#btnFooterAction').attr('src', '../ImagesMain2/Home/GoToKawWorldwide.jpg');
    				         
                            $('#divIntl').css({
				                 marginTop: '0px',
				                 height: '17px'
				             });
				             				             
				             isOpen = false; 
				          }
				     }

				     function openFooter() 
				     { 
				        
				            $('#btnFooterAction').attr('src', '../ImagesMain2/Home/closeBtn.jpg');    				         
				                 $('#divIntl').css({
				                     marginTop: '-163px',
				                     height: '175px' 
				                 });
				             isOpen = true;
				        
				     }
				     

				  
				     
				     
				     
//END OF HOME PAGE JAVASCRIPT	
