Products Menu Dropdown

Hi,

I have this :

<div id="menubar" class="row-fluid">

&lt;div id=&quot;menubarinner&quot;&gt;


		&lt;div class=&quot;span2 menutab products&quot;&gt;


			&lt;?php &#036;this-&gt;widget('application.extensions.wsmenu.wsmenu', array(


				'categories'=&gt; Category::GetTree(),


				'menuheader'=&gt; Yii::t('global','Products'),


				'showarrow'=&gt;true,


			)); //products dropdown menu ?&gt;


		&lt;/div&gt;


	&lt;div class=&quot;span10&quot;&gt;


		&lt;?php if (count(CustomPage::model()-&gt;toptabs()-&gt;findAll()))


			&#036;this-&gt;widget('zii.widgets.CMenu', array(


			'id'=&gt;'menutabs',


			'itemCssClass'=&gt;'menutab menuheight menuunderline span'.round(12/count(CustomPage::model()-&gt;toptabs()-&gt;findAll())),


			'items'=&gt;CustomPage::model()-&gt;toptabs()-&gt;findAll()


		)); ?&gt;


	&lt;/div&gt;


&lt;/div&gt;

</div><!-- menubar -->

<div class="clearfix"></div>

It shows ALL my products (Products>clothes,accessories,etc.)

but i want something more like :

clothes>mens,women,etc.

I’m kind of beginner and i don’t know where to start…

Thanks for helping me