function Agent(){
  this.agent=navigator.userAgent.toLowerCase();
  this.opera = (this.agent.indexOf('opera')!=-1) ? true:false;
  this.ie = (this.agent.indexOf('msie')>=0) ? true:false;
  this.ns6 = ((this.agent.indexOf('gecko')>=0) && (this.agent.indexOf('opera')==-1)) ? true:false;
  this.ns4 = ((this.agent.indexOf('mozilla')>=0) && (this.agent.indexOf('gecko')==-1) && (this.agent.indexOf('msie')==-1)) ? true:false;
  return(1);
}
var is = new Agent();

function SwapImage(id,mode){
  var img = document.images[id].src;
  if(mode==3) document.images[id].src=img.substr(0,img.length-6)+'_a.'+img.substr(img.length-3,img.length);  
  if(mode==2) document.images[id].src=img.substr(0,img.length-6)+'_o.'+img.substr(img.length-3,img.length);
  if(mode==1) document.images[id].src=img.substr(0,img.length-4)+'_o.'+img.substr(img.length-3,img.length);
  if(mode==0) document.images[id].src=img.substr(0,img.length-6)+'.'+img.substr(img.length-3,img.length);  
}


