function SwitchImage(i)
{var img;var txt;var url;var run;switch(i)
{case 0:img="/images/network.jpg";alt="N2WEB Networks";txt='<a href="/network">Networks&nbsp;</a>';url="/network";i++;break;case 1:img="/images/httplogo.jpg";alt="N2WEB Web Services";txt='<a href="/webserv">Web Services&nbsp;</a>';url="/webserv";i++;break;case 2:default:img="/images/documents.jpg";alt="N2WEB Document Management";txt='<a href="/docman">Document Management&nbsp;</a>';url="/docman";i=0;break;}
txt=txt+"&nbsp;";$('#indimg').attr('src',img);$('#indimg').fadeIn(300);$('#indimg').attr('alt',alt);$('#indimg').attr('title',alt);$('#indurl').attr('href',url);$('#indtxt').html(txt);run="NextImage("+i+")";setTimeout(run,8000);}
function NextImage(i){$('#indimg').fadeOut(300);run="SwitchImage("+i+")";setTimeout(run,250);}
function shoh(id){if(document.getElementById){if(document.getElementById(id).style.display=="none")
document.getElementById(id).style.display='block';else
document.getElementById(id).style.display='none';}
else{if(document.layers){if(document.id.display=="none")
document.id.display='block';else
document.id.display='none';}
else{if(document.all.id.style.visibility=="none")
document.all.id.style.display='block';else
document.all.id.style.display='none';}}}
