/* author: gilbert colobanea */
/* Creation date: 26.02.2008 */
function showSubMenu( menuItem ) {
total = 6;   menuId = "Sub" + menuItem.parentNode.id;
   show = false;
   for(i = 0; i < total; i++) {
   		subMenuId = "SubMenu" + i;	 
		obj = document.getElementById(subMenuId);
		if(menuId == subMenuId) {
			obj.style.display = 'block';
		} else {
			obj.style.display = 'none';
		}
   }
}