var ids=new Array('a5','a6','a7','a8','a9');

function switchid1(id){
for (var i=0;i<ids.length;i++)
{
    var idO=ids[i];
   // alert(id)
		if(id==ids[i])
		{
		 alert(id+'in')
		    document.getElementById(id).style.display='block';
		}
		else
		{
		     document.getElementById(idO).style.display='none';
		}
		alert(document.getElementById(id).style.display='block')
		//hidediv(ids[i]);
		
	
	}
	//hideallids();
	//showdiv(id);
}
       
function switchid(id)
{

   //var idValue=id;
   //alert(id)
        if(id=='a5')
        {
         document.getElementById('a5').style.display='block';
         document.getElementById('a6').style.display='none';
         document.getElementById('a7').style.display='none';
         document.getElementById('a8').style.display='none';
		 document.getElementById('a9').style.display='none';
        
         
         
                          /* Mozilla */
         document.getElementById('main6').setAttribute('class','hide6');
         document.getElementById('main7').setAttribute('class','show7');
         document.getElementById('main8').setAttribute('class','show8');
         document.getElementById('main9').setAttribute('class','show9');
		 document.getElementById('main10').setAttribute('class','show10');
     
          
                         /* IE */
                         
          
         document.getElementById('main6').setAttribute('className','hide6');
         document.getElementById('main7').setAttribute('className','show7');
         document.getElementById('main8').setAttribute('className','show8');
         document.getElementById('main9').setAttribute('className','show9');
		 document.getElementById('main10').setAttribute('className','show10');
       
         
        }
        else if(id=='a6')
        {
         document.getElementById('a5').style.display='none';
         document.getElementById('a6').style.display='block';
         document.getElementById('a7').style.display='none';
         document.getElementById('a8').style.display='none';
		 document.getElementById('a9').style.display='none';
        
         
         
                                /* IE */
         document.getElementById('main6').setAttribute('className','show6');
         document.getElementById('main7').setAttribute('className','hide7');
         document.getElementById('main8').setAttribute('className','show8');
         document.getElementById('main9').setAttribute('className','show9');
		 document.getElementById('main10').setAttribute('className','show10');
     
        
                               /* Mozilla*/
                            
         document.getElementById('main6').setAttribute('class','show6');
         document.getElementById('main7').setAttribute('class','hide7');
         document.getElementById('main8').setAttribute('class','show8');
         document.getElementById('main9').setAttribute('class','show9');
		 document.getElementById('main10').setAttribute('class','show10');
    
            
        }
        else if(id=='a7')
        {
         document.getElementById('a5').style.display='none';
         document.getElementById('a6').style.display='none';
         document.getElementById('a7').style.display='block';
         document.getElementById('a8').style.display='none';
		 document.getElementById('a9').style.display='none';
    
         
                        /* Mozilla */
                        
          document.getElementById('main6').setAttribute('class','show6');
         document.getElementById('main7').setAttribute('class','show7');
         document.getElementById('main8').setAttribute('class','hide8');
         document.getElementById('main9').setAttribute('class','show9');
		 document.getElementById('main10').setAttribute('class','show10');
       
         
                            /* IE */
         
           document.getElementById('main6').setAttribute('className','show6');
         document.getElementById('main7').setAttribute('className','show7');
         document.getElementById('main8').setAttribute('className','hide8');
         document.getElementById('main9').setAttribute('className','show9');
		 document.getElementById('main10').setAttribute('className','show10');
        
         
         
        }
        else if(id=='a8')
        {
         document.getElementById('a5').style.display='none';
         document.getElementById('a6').style.display='none';
         document.getElementById('a7').style.display='none';
         document.getElementById('a8').style.display='block';
		   document.getElementById('a9').style.display='none';
     
         
         
                        /* Mozilla */
                    
         document.getElementById('main6').setAttribute('class','show6');
         document.getElementById('main7').setAttribute('class','show7');
         document.getElementById('main8').setAttribute('class','show8');
         document.getElementById('main9').setAttribute('class','hide9');
		 document.getElementById('main10').setAttribute('class','show10');
		 
        
          
                        /*  IE */
                        
                        
         document.getElementById('main6').setAttribute('className','show6');
         document.getElementById('main7').setAttribute('className','show7');
         document.getElementById('main8').setAttribute('className','show8');
         document.getElementById('main9').setAttribute('className','hide9');
		  document.getElementById('main10').setAttribute('className','show10');
			        
        }
        
         else if(id=='a9')
        {
         document.getElementById('a5').style.display='none';
         document.getElementById('a6').style.display='none';
         document.getElementById('a7').style.display='none';
         document.getElementById('a8').style.display='none';
		   document.getElementById('a9').style.display='block';
     
         
         
                        /* Mozilla */
                    
         document.getElementById('main6').setAttribute('class','show6');
         document.getElementById('main7').setAttribute('class','show7');
         document.getElementById('main8').setAttribute('class','show8');
         document.getElementById('main9').setAttribute('class','show9');
		 document.getElementById('main10').setAttribute('class','hide10');
		 
        
          
                        /*  IE */
                        
                        
         document.getElementById('main6').setAttribute('className','show6');
         document.getElementById('main7').setAttribute('className','show7');
         document.getElementById('main8').setAttribute('className','show8');
         document.getElementById('main9').setAttribute('className','show9');
		  document.getElementById('main10').setAttribute('className','hide10');
			        
        }
	
}	

