<!--

function OpenClose(id){
	var imid = id + ".i";
	if (document.getElementById(id).className=="simpleBlockh"){
		document.getElementById(id).className="simpleBlock";
		document.getElementById(imid).src="images/menu-arrow-down.gif";
		}
	else{
		document.getElementById(id).className="simpleBlockh";
		document.getElementById(imid).src="images/menu-arrow-left.gif";
		}
}
function Over(id){
	var imid = id + ".i";
	if (document.getElementById(id).className=="simpleBlockh"){
		document.getElementById(imid).src="images/menu-arrow-left-color.gif";
	}
}

function Out(id){
	var imid = id + ".i";
	if (document.getElementById(id).className=="simpleBlockh"){
		document.getElementById(imid).src="images/menu-arrow-left.gif";
	}
}
	
-->