






function Swap_Div_Gov(Max , n )
{ 

	for(var i=1;i<=Max ; i++)
	{ 
		var Div = document.getElementById("Div_" + i); 		
		var Gov_Str_Menu = document.getElementById("Gov_Str_Menu_" + i );				
		
		if( n == i )
		{ 
			Div.style.display="block";
			Gov_Str_Menu.style.color = "#ff7f00" ;
		}
		else
		{ 
			Div.style.display = "none";
			Gov_Str_Menu.style.color = "#4d4d4d" ;
		} 
	}
	
	return false;
}


 


function Swap_Div_Gov_Sort(WhichDIV ,Max , N)
{ 
			
		
	for(var i=1;i<=Max ; i++)
	{ 
		var Div = document.getElementById("Div_" + WhichDIV + "_" + i);
		var Gov_Sort = document.getElementById("Gov_Sort_" + WhichDIV + "_" + i);		 		
		if( N == i )
		{ 
			Div.style.display ="block";
			Gov_Sort.className = "Gov_Sort_Hover" ;
		}
		else
		{ 
			Div.style.display = "none";
			Gov_Sort.className = "Gov_Sort" ;
		} 
	}
	
	return false;
} 









function About_Menu_Enter( N ,Max )
{ 	
	
	
		for(var i = 1 ; i <= Max ; i++ )
		{ 
			var About_Menu = document.getElementById("About_Menu_" + i); 	
			var About_Menu_List = document.getElementById("About_Menu_List_" + i); 	
			if( N == i )
			{  
				About_Menu.className = "Active" ;
				if( N != 3 )
				{
					About_Menu_List.style.display = "none";
				}
				else
				{
					About_Menu_List.style.display = "block";
				}
			}
			else
			{ 
				About_Menu.className = "Down" ;
				About_Menu_List.style.display = "none";
			} 
		}
		
	return true;
 

}


function Gov_Menu_Enter( N ,Max )
{ 	
	
	
		for(var i = 1 ; i <= Max ; i++ )
		{ 
			var About_Menu = document.getElementById("Gov_Menu_" + i); 	
			var About_Menu_List = document.getElementById("Gov_Menu_List_" + i); 	
			if( N == i )
			{  
				About_Menu.className = "Active" ;
				if( N != 3 )
				{
					About_Menu_List.style.display = "none";
				}
				else
				{
					About_Menu_List.style.display = "block";
				}
			}
			else
			{ 
				About_Menu.className = "Down" ;
				About_Menu_List.style.display = "none";
			} 
		}
		
	return true;
 

}
 


function Gov_Menu( Max , N , Return )
{ 	
	
	
		for(var i = 1 ; i <= Max ; i++ )
		{ 
			var About_Menu = document.getElementById("Gov_Menu_" + i); 	
			var About_Menu_List = document.getElementById("Gov_Menu_List_" + i); 	
			if( N == i )
			{  
				About_Menu.className = "Active" ;
				if( Return == 'false' )
				{
					About_Menu_List.style.display = "none";
				}
				else
				{
					About_Menu_List.style.display = "block";
				}
			}
			else
			{ 
				About_Menu.className = "Down" ;
				About_Menu_List.style.display = "none";
			} 
		}
		
	return true;
 

}

function Gov_Menu_List_A( Which, N ,Max  )
{ 	
	for(var i = 1 ; i <= Max ; i++ )
	{ 
		var About_Menu_List_AO = document.getElementById("Gov_Menu_List_A_" + Which + "_" + i); 
		if( N == i )
		{  
			About_Menu_List_AO.style.color  = "#FF7F00" ;	
			About_Menu_List_AO.style.background = "#f7f7f7" ;
		}
		else
		{ 
			About_Menu_List_AO.style.color  = "#333333" ;
			About_Menu_List_AO.style.background = "#FFFFFF" ;
			
		} 
	}
	return false;
}





































