// jQuery

   $(document).ready(
      function(){
        
        
        $('#bottomNavArrowLeft').click(function()
           {
              $('#bottomNavItems2').fadeOut('slow');
              if($('#bottomNavItems2').css('display','none')){
                 $('#bottomNavItems1').fadeIn('fast');
                 };
           }
        );
        
        $('#bottomNavArrowRight').click(function()
           {
              $('#bottomNavItems1').fadeOut('slow');
              if($('#bottomNavItems1').css('display','none')){
                 $('#bottomNavItems2').fadeIn('fast');
                 };
           }
        );
        
        
      });

