// JavaScript Document

function hideAll(menu,s1,s2){		
/*		document.getElementById('menuProducts').style.backgroundColor = '#1F262D';
		document.getElementById('menuDownload').style.backgroundColor = '#1F262D';
		document.getElementById('menuBuy').style.backgroundColor = '#1F262D';
		document.getElementById('menuSupport').style.backgroundColor = '#1F262D';
		document.getElementById('menuContact').style.backgroundColor = '#1F262D';
		document.getElementById('splitter1').style.visibility = 'visible';
		document.getElementById('splitter2').style.visibility = 'visible';
		document.getElementById('splitter3').style.visibility = 'visible';
		document.getElementById('splitter4').style.visibility = 'visible';*/
		document.getElementById(menu).style.backgroundColor = '#1F262D';
		if(s1.toString().length!=0)
		    document.getElementById(s1).style.visibility = 'visible';
		if(s2.toString().length!=0)
		    document.getElementById(s2).style.visibility = 'visible';
}

function mouseOver(menu,s1,s2){
	document.getElementById(menu).style.backgroundColor = '#ED3938';
	if(s1.toString().length!=0)
	    document.getElementById(s1).style.visibility = 'hidden';
    if(s2.toString().length!=0)
	    document.getElementById(s2).style.visibility = 'hidden';
}
