  //'
  //' QUICK SEARCH: Update the quick search results, such as after a keypress, then post the AJAX request
  //'
   var commonNavigationSearchPrompt = 'Quick Search - Type Here';
   var timer;
   function commonNavigationSearchUpdate() {
      if (document.getElementById('commonNavigationSearch').value != '') {
         clearTimeout(timer);
         timer=setTimeout('commonNavigationSearchAJAX();',400);
//         document.getElementById('commonNavigationSearchResults').innerHTML='<Div Style="position:absolute;top:40px;left:11px;width:110px;color:#8700E1;border:1px solid silver;background-color:white;font-size:11px;">Type&hellip; Pause&hellip; View&hellip;</Div>';
         document.getElementById('commonNavigationSearchResults').innerHTML='<Div Style="position:absolute;top:40px;left:11px;width:110px;color:#8700E1;border:1px solid silver;background-color:white;font-size:11px;">Pause to preview&hellip;</Div>';
         document.getElementById('commonNavigationSearchResults').style.visibility = 'visible';
         }
      else {
         document.getElementById('commonNavigationSearchResults').style.visibility = 'hidden';
         document.getElementById('commonNavigationSearchResults').innerHTML='';
         }
      }
   //'
   //' QUICK SEARCH: AJAX Submit the Quick Search request
   //'
   function commonNavigationSearchAJAX() {
      if (document.getElementById('commonNavigationSearch').value != '') {
   //      'Submit the AJAX request
         commonLibraryAJAXPostHTML('/CommonNavigation/CommonNavigationSearchAJAX.htm', 'CommonSearchAJAX.Search=' + escape(document.getElementById('commonNavigationSearch').value) + '&CommonSearchAJAX.Page=%System.PageName%', 'commonNavigationSearchResults', '', true);
         }
      }
   //'
   //' Navigation Pop-Up SHOP Menu
   //'
      var menuShopTimer; // Timeout variable
      function menuShopPopDown() {
         menuShopTimer= setTimeout("document.getElementById('shopDropdown').style.visibility = 'hidden';document.getElementById('menuShop').src='/CommonNavigation/NavShop.png'",250);
         }
      function menuShopPopUp() {
         clearTimeout(menuShopTimer);
         document.getElementById('menuShop').src='/CommonNavigation/NavShopMenu.png';
         document.getElementById('shopDropdown').style.visibility = 'visible';
         }
   //'
   //'NAVIGATION INDEX BIG TILES (Hover over and they grow larger)
   //'
   var commonBigTileSaveWidth;
   var commonBigTileSaveHeight;
   function commonBigTile(commonBigTileItem,commonBigTileEnable) {
      if (commonBigTileEnable) {
         commonBigTileSaveWidth=commonBigTileItem.style.width;
         commonBigTileSaveHeight=commonBigTileItem.style.height;
         commonBigTileItem.style.width="50px";
         commonBigTileItem.style.height="50px";
         }
      else {
         commonBigTileItem.style.width=commonBigTileSaveWidth;
         commonBigTileItem.style.height=commonBigTileSaveHeight;
         }
      }

