<!--
	var arrHeads = new Array();
	var arrImages=new Array();
	
	arrHeads[0] = 'head0';
	arrHeads[1] = 'head1';
	arrHeads[2] = 'head2';
	arrHeads[3] = 'head3';
	arrHeads[4] = 'head4';
	arrHeads[5] = 'head5';
	
   if (document.layers){
      //Netscape 4 specific code
      pre = 'document.';
      post = '';
   }

   if (document.all){
      //IE4+ specific code
      pre = 'document.all.';
      post = '.style';
   }
	
	function LoadImages() {
		var temp = LoadImages.arguments; 
		for(c=0; c < temp.length; c++) {
			arrImages[c]=new Image();
			arrImages[c].src= 'img/' + LoadImages.arguments[c] + 'on.gif';
 		}
	}
	
	function PreLoad() {
		LoadImages('about','news','products','services','contact','support','sm00','sm01','sm10','sm13','sm20','sm21','sm22','sm23','sm24','sm30','sm31','sm32','sm33','sm40','sm41','sm50', 'lar', 'rar');
	}

	function EnterTitle(menunumber) {
		if (is.ie4up) {
			tempOb = eval('document.all.mnbd' + menunumber + '.style');
			tempOb2 = eval('document.all.mnhd' + menunumber);
			tempOb.left = tempOb2.offsetLeft + document.all.main.offsetLeft + document.all.top.offsetLeft;
			tempOb.visibility = 'visible';
			strTemp = 'img/head/' + arrHeads[menunumber] + 'on.gif';
			tempOb2.src = strTemp;
		}
		else if (is.nav4up) {
		   if (document.getElementById){
    	   	  	//Netscape 6 specific code
      	   	  	tempOb=eval('document.getElementById("mnbd" + menunumber).style');
				tempOb2 = eval('document.getElementById("mnhd" + menunumber)');
 				tempOb.left = tempOb2.offsetLeft;
				tempOb.top = 119;
				tempOb.visibility = 'inherit';
		  	}		
   		  	else {
			   	strOb1 = 'mnbd' +  menunumber;
			 	strOb2 ='mnhd' + menunumber
			 	document.layers[strOb1].left = document.layers[strOb2].left;
				document.layers[strOb1].visibility='inherit';
			}
			strTemp = 'mnhd' + menunumber;
		   	document[strTemp].src = 'img/head/' + arrHeads[menunumber] +'on.gif';
		}
		else if (is.opera) {
			tempOb = eval('document.all.mnbd' + menunumber + '.style');
			tempOb2 = eval('document.all.mnhd' + menunumber);
			tempOb.pixelLeft = tempOb2.style.pixelLeft;
			tempOb.visibility = 'visible';
			strTemp = 'img/head/' + arrHeads[menunumber] + 'on.gif';
			tempOb.src = strTemp;
		}
	}

	function HideMenu(menunumber) {
		if (is.ie4up) {
			tempOb = eval('document.all.mnbd' + menunumber + '.style');
			tempOb.visibility = 'hidden';
			tempOb = eval('document.all.mnhd' + menunumber);
			strTemp = 'img/head/' + arrHeads[menunumber] + 'off.gif';
			tempOb.src = strTemp; 
		}
		else if (is.nav4up) {
		   if (document.getElementById){
    	   	  	//Netscape 6 specific code
      	   	  	tempOb=eval('document.getElementById("mnbd" + menunumber).style');
				tempOb.visibility = 'hidden';
		  	}		
   		  	else {
			   	strOb1 = 'mnbd' +  menunumber;
				document.layers[strOb1].visibility='hidden';
			}
			strTemp = 'mnhd' + menunumber;
		   	document[strTemp].src = 'img/head/' + arrHeads[menunumber] +'off.gif';
		}
		else if (is.opera) {
			tempOb = eval('document.all.mnbd' + menunumber + '.style');
			tempOb.visibility = 'hidden';
			strTemp = 'img/head/' + arrHeads[menunumber] + 'on.gif';
			tempOb.src = strTemp;
		}
	}	
	
	
	function ImgOn(temp) {
		if (is.nav4up) {
			document[temp].src = 'img/head/' + temp + 'on.gif';
		}
		else {
			tempOb = eval('document.all.' + temp);
			tempOb.src = 'img/head/' + temp + 'on.gif';
		}
	}
	
	function ImgOff(temp) {
		if (is.nav4up) {
		   	document[temp].src = 'img/head/' + temp + 'off.gif';
		}
		else {
			tempOb = eval('document.all.' + temp);
			tempOb.src = 'img/head/' + temp + 'off.gif';
		}
	}

//-----------------------------------------------------------------------------
// ClientSnifferJr Object Constructor.
// This is a simplified version of the Client Sniffer code found at
// http://developer.netscape.com/docs/examples/javascript/browser_type.html

function ClientSnifferJr()
{
  this.ua = navigator.userAgent.toLowerCase();
  this.major = parseInt(navigator.appVersion);
  this.minor = parseFloat(navigator.appVersion);
  this.nav   = (
    (this.ua.indexOf('mozilla')!=-1)
    && ((this.ua.indexOf('spoofer')==-1)
    && (this.ua.indexOf('compatible') == -1))
  );
  this.nav4  = (this.nav && (this.major == 4));
  this.nav4up= (this.nav && (this.major >= 4));
  this.nav5up= (this.nav && (this.major >= 5));
  this.gecko = (this.ua.indexOf('gecko') != -1); 
  this.ie    = (this.ua.indexOf("msie") != -1);
  this.ie3   = (this.ie && (this.major == 2));
  this.ie4   = (
    this.ie && (this.major == 4)
    && (this.ua.indexOf("msie 5.0")==-1)
  );
  this.ie4up = (this.ie  && (this.major >= 4));
  this.ie5up = (this.ie && !this.ie3 && !this.ie4);
  this.opera = (this.ua.indexOf("opera") != -1);
  this.hotjava = (this.ua.indexOf("hotjava") != -1); 
  this.webtv = (this.ua.indexOf("webtv") != -1);
  this.aol   = (this.ua.indexOf("aol") != -1); 
}

var is = new ClientSnifferJr();
-->