function startUp(){setNavigation();setLowerNavigation()}function setNavigation(){var navRoot;var node='';var tempClassName='';var leftPosition=0;var topPosition=0;navRoot=$('#global_menu');$(navRoot).children('li').mouseover(function(){tempClassName=this.className;if(tempClassName.indexOf('over')==-1){$(this).addClass('over');if($(this).children('ul:first').length>0){node=$(this).children('ul:first')[0]}}}).mouseout(function(){$(this).removeClass('over')})}function setLowerNavigation(){var lowerRoot='';var lnode='';var targetUL=$('#link_series');var ulToLoad;var ulNew;if($('#link_category>ul>li.selected')){ulToLoad=$('#link_category>ul>li.selected').children('ul');$(targetUL).empty();$(ulToLoad).clone().appendTo($(targetUL))}lowerRoot=$('#link_category>ul:first');for(j=0;j<lowerRoot.children('li').length;j++){lnode=lowerRoot.children('li')[j];lnode.onmouseover=function(){removeStyle();$(this).addClass('selected');ulNew=$(this).children('ul');$(targetUL).empty();$(ulNew).clone().appendTo($(targetUL))}}}function removeStyle(){var lowerRoot;var lnode;if($('#prod_list')){lowerRoot=$('#link_category>ul:first');for(var j=0;j<lowerRoot.children('li').length;j++){lnode=lowerRoot.children('li')[j];$(lnode).removeClass('selected')}}}