// JavaScript Document
<!--
function showSubNav(subNavID) { 
  var i,v,obj,mainObj;
  for (i=1; i<6; i++){
	if(subNavID==i){
		//Hover Subnav
  		with (document) if (getElementById && ((obj=getElementById('subNav'+i))!=null)) { 
    		if (obj.style) { obj=obj.style;
			}
    		obj.display='block';
		}

	} else {
  		with (document) if (getElementById && ((obj=getElementById('subNav'+i))!=null)) { 
    		if (obj.style) { obj=obj.style;}
    		obj.display='none';
		}
	}
  }
    for (i=1; i<6; i++){
		if(subNavID==i){
		//Hover Subnav
  			with (document) if (getElementById && ((obj=getElementById('mainNav'+i))!=null)) { 
  	  		if (obj.style) { obj=obj.style;
				}
   		 		obj.backgroundColor='#a9a9a9';
			}
		} else {
  			with (document) if (getElementById && ((obj=getElementById('mainNav'+i))!=null)) { 
    			if (obj.style) { obj=obj.style;}
    			obj.backgroundColor='#797d80';
			}
		}
  }
}
//-->