function dynadiv(x,onoff,auto){
						 dynadiv_txt=document.getElementById('dynadiv');
						 if(onoff == 'on'){
						 		document.getElementById('navi'+x).src=picon[x].src;
						 		x.src=picon[x].src;
						 		dynadiv_txt.innerHTML = nav_txt[x];
								}
						 if(onoff == 'off'){
						 		document.getElementById('navi'+x).src=pic[x].src;
								}
							if(typeof(auto)=='undefined' && onoff=='on'){window.clearInterval(myint);}
						 	if(typeof(auto)=='undefined' && onoff=='off'){myint = window.setInterval("dynadiv(mycount,'on',1)", 5000);}
						 	
							if(auto==1){
									if(mycount==0){dynadiv(5,'off',0);mycount++;}
									else if(mycount<5){oneback=mycount-1;dynadiv(oneback,'off',0);mycount++}
									else{oneback=mycount-1;dynadiv(oneback,'off',0);mycount=0;}
							}
							
			}
												
			var nav_img = new Array()
			nav_img[0] = "navbox_cd"
			nav_img[1] = "navbox_dvd"
			nav_img[2] = "navbox_label"
			nav_img[3] = "navbox_pack"
			nav_img[4] = "navbox_mail"
			nav_img[5] = "navbox_vhs"
			
			var nav_txt = new Array()
			nav_txt[0] = "CD Duplication & Replication"
			nav_txt[1] = "DVD Duplication & Replication"
			nav_txt[2] = "Labeling"
			nav_txt[3] = "Packaging Options"
			nav_txt[4] = "Distribution & Fulfillment"
			nav_txt[5] = "VHS Duplication"
			
			if (document.images)
					{
						pic = new Array()
						picon = new Array()
						for(i=0;i<6;i++){
					  	pic[i]= new Image(92,73); 
					  	pic[i].src="http://www.promediaohio.com/digital/images/"+nav_img[i]+".gif";
					  	picon[i] = new Image(92,73);
					  	picon[i].src="http://www.promediaohio.com/digital/images/"+nav_img[i]+"_on.gif";
					  	}
					}
			var mycount=0;
			var myint = window.setInterval("dynadiv(mycount,'on',1)", 5000);