function ColorWhite(id)
{
	document.getElementById(id).style.color='#ffffff';
}
function ColorBlue(id)
{
	document.getElementById(id).style.color='#185991';
}

function ShowMenu(id)
{	
	document.getElementById(id).style.backgroundImage = 'url("/img/img_select2.gif")';
	document.getElementById(id).style.color='#185991';
	document.getElementById(id).style.cursor='pointer';
	if (id==('4'))
	{document.getElementById(id).style.backgroundImage = 'url("/img/img_select2_for_big_menu.jpg")';
	};

		
}
function HideMenu(id)
{
	document.getElementById(id).style.backgroundImage = 'none';
	document.getElementById(id).style.color='#ffffff';
}

function OutputSimbols(id){
	document.getElementById(id).style.backgroundImage = 'url("/img/arrows.gif")';
	document.getElementById(id).style.height='7px';
	document.getElementById(id).style.repeat='none';	

}
function HiddenSimbols(id){
	document.getElementById(id).style.backgroundImage = '';
	document.getElementById(id).style.repeat='none';	
}
function Line(id){
	document.getElementById(id).style.backgroundColor= '#D7EBF4';
		
}
function HiddenLine(id){
	document.getElementById(id).style.backgroundColor = '';	
}

function SelectedMenuVsp(id)
{
	document.getElementById(id).style.visibility='visible';
}
function deSelectedMenuVsp(id)
{
	document.getElementById(id).style.visibility='hidden';
}
function loadIMGs()
{
	var imagesList = [
	               '/img/arrows.gif','img/img_select2.gif',];
	
	var aImages = [];
	
	for (var i = 0, len = imagesList.length; i < len; i++) {
	
	       aImages[i] = new Image();
	
	       aImages[i].src = imagesList[i];
	
	}
}
