function showFocus(num){
 　　for(var id = 1;id<=10;id++)
  {
　　 var fpid="focusPic"+id;
　　 if(id==num){
　　　　 try{document.getElementById(fpid).style.display="block"}catch(e){};
　　 }else{
　　　　 try{document.getElementById(fpid).style.display="none"}catch(e){};
     }
  }  

}



$(function() {
      closetimer = 0;
      //if ($("#nav")) {
        $("#nav b").mousedown(function() {
          clearTimeout(closetimer);
         // if (this.className.indexOf("clicked") != -1) {

           if (this.className.indexOf("three-left-te") != -1) {

            $(this).parent().next().slideUp(500);
        //    $(this).removeClass("clicked");
        //    $(this).addClass("two-r-top");          
          }
          else {
         //   $("#nav b").removeClass();
          //  $(this).addClass("clicked");            
                        $("#nav ul:visible").slideUp(500);
                        $(this).parent().next().slideDown(1500);
               
               
          }
          return false;
        });
        $("#nav").mouseover(function() {
          clearTimeout(closetimer);
        });
      /*  $("#nav").mouseout(function() {
          closetimer = window.setTimeout(function() {
            $("#nav ul:visible").slideUp(500);
        //    $("#nav b").removeClass("clicked");
        //    $("#nav b").addClass("two-r-top");
          }, 2000);
        });*/
      //}
    });

