	function get_ids(nume){
		var id = document.getElementById(nume);
		return id;
	}

	function show_submenu(submenu,menuitem)
	{
		document.getElementById(submenu).style.visibility="visible";
		document.getElementById(menuitem).style.fontWeight="bold";
	}
	function hide_submenu(submenu, menuitem)
	{
		document.getElementById(submenu).style.visibility="hidden";
		document.getElementById(menuitem).style.fontWeight="normal";
	}
	
	
	function show_history(){
		var img = arguments[0];
		var istoric = get_ids("istoric_evenimente");
		var arrow_history = get_ids("arrow_history");
		if(istoric.style.visibility=="hidden"){
			istoric.style.visibility="visible";
			arrow_history.src=img+"ic_arrow_down.png";
		}else{
			istoric.style.visibility="hidden";
			arrow_history.src=img+"ic_arrow_up.png";
		}
	}
	
	function istoric_over(){
		var titlu = get_ids("istoric");
		titlu.style.fontWeight = "bold";
		titlu.style.cursor = "pointer";
	}
	
	function istoric_out(){
		var titlu = get_ids("istoric");
		titlu.style.fontWeight = "normal";
	}
