function shownav(iNId) { 
  for(var i=1; i<=8; i++){
      if(i>=10){
		 var ts=document.getElementById("snav_"+i);
	  }
	  else{
		 var ts=document.getElementById("snav_0"+i);
	  }
	  ts.style.display = "none";	  
  }
  if(iNId>=10){
     var oLi = document.getElementById("snav_"+iNId); 
  }
  else{
     var oLi = document.getElementById("snav_0"+iNId);
  }  
  oLi.style.display = "block";
	
  var oDiv = document.getElementById("snav");  
  if(iNId>1){
   	 //oDiv.style.padding = "0 0 0 " + (55*(iNId-1)-55*(iNId/2)) + "px";
	 oDiv.style.padding = "0 0 0 " + (96*(iNId-1)) + "px";
  }
  else{
     oDiv.style.padding = "0 0 0 " + (86*(iNId-1)+0) + "px";
  }
  window.setTimeout(function(){oLi.style.display = "none";}, 20000);		
}