/**

	THD-MENU SCRIPT made by thunder
	site: www.thunderweb.srv.ro
	Do not modify anything!

**/




function show_submenu(id){

	document.getElementById(id).style.display="block";

}

function close_submenu(id){

	document.getElementById(id).style.display="none";

}


