/*
  $Id: menu.js, v 0.1 2008/06/03 22:52:54 hpdl Exp $
  
  IA-IT, Integrated Information Systems
  http://www.ia-it.ru
  
  Copyright (c) 2008 IA-IT
  
  Released under the GNU General Public License v3
*/

function OverButton(TargetButton) {
	if(TargetButton.style.fontSize=='10pt'){
		DeactivateButton(TargetButton);
	}else{
		ActivateButton(TargetButton);
	}
}

function ActivateButton(TargetButton) {
	TargetButton.style.fontSize='10pt';
	TargetButton.style.margin='5px 12px';
	TargetButton.style.padding='0px 0px 6px 0px';
	TargetButton.style.borderTop='2px solid #213300';
	TargetButton.style.borderBottom=TargetButton.style.borderTop;
}

function DeactivateButton(TargetButton) {
	TargetButton.style.fontSize='9pt';
	TargetButton.style.margin='6px 12px';
	TargetButton.style.padding='1px 0px 5px 0px';
	TargetButton.style.borderTop='1px solid #213300';
	TargetButton.style.borderBottom=TargetButton.style.borderTop;
}

function OpenSubmenu(Chapt) {
	CloseSubmenu('Company');
	CloseSubmenu('Technology');
	CloseSubmenu('Products');
	CloseSubmenu('Services');
	CloseSubmenu('Articles');
	document.getElementById(Chapt).style.position='relative';
	document.getElementById(Chapt).style.visibility='visible';
}

function CloseSubmenu(Chapt) {
	try{	
	document.getElementById(Chapt).style.position='absolute';
	document.getElementById(Chapt).style.visibility='hidden';
	}catch(err){
	;}
}
