
				
				function shared_hosting_menu_off()
				{
				document.getElementById('thrd01').style.display='none'; 
				document.getElementById('scndi01_c').style.display='block'; 
				document.getElementById('scndi01_o').style.display='none';
				}
				
				function dedicated_hosting_menu_off()
				{
				document.getElementById('thrd02').style.display='none'; 
				document.getElementById('scndi02_c').style.display='block'; 
				document.getElementById('scndi02_o').style.display='none';
				}
				

				
				function secure_certificates_menu_off()
				{
				document.getElementById('thrd03').style.display='none'; 
				document.getElementById('scndi03_c').style.display='block'; 
				document.getElementById('scndi03_o').style.display='none';

				}
				
				function shared_hosting_menu_on()
				{
				document.getElementById('thrd01').style.display='block';
				document.getElementById('scndi01_c').style.display='none'; 
				document.getElementById('scndi01_o').style.display='block';
				dedicated_hosting_menu_off();
				secure_certificates_menu_off();
				}
				
				function dedicated_hosting_menu_on()
				{
				document.getElementById('thrd02').style.display='block'; 
				document.getElementById('scndi02_c').style.display='none'; 
				document.getElementById('scndi02_o').style.display='block';
				shared_hosting_menu_off();
				secure_certificates_menu_off(); 
				}
				
				function secure_certificates_menu_on()
				{
				document.getElementById('thrd03').style.display='block'; 
				document.getElementById('scndi03_c').style.display='none'; 
				document.getElementById('scndi03_o').style.display='block'; 
				dedicated_hosting_menu_off();
				shared_hosting_menu_off();
				}
				


				
				
