// JavaScript Document
function showMenu(theId) {
	var list = new Array("gentlemen","products");
	// this hides all but the current elements content
  	for(var i=0;i<2;i++){
   		if(list[i] != theId){ 
	   		document.getElementById(list[i]).style.display="none";
		}
   	}
	 // show current element
   document.getElementById(theId).style.display="block";
   return false;
}

