Cagatay, Here is the ValueChangeListener:
public void var1ValueChangeListener(ValueChangeEvent e)
{
FacesContext context = FacesContext.getCurrentInstance();
this.var1 = (Integer) e.getNewValue();
valueChanged();
context.renderResponse();
}
In the valueChanged() method is where I set the other menu item values based
on var1 (for example).

