Theming Tabs Created Using Cjuitabs

Hi ,

I am creating tabs using CJuiTabs , in the folowing manner




$userid=Yii::app()->user->id;


$this->widget('zii.widgets.jui.CJuiTabs',array(

    'tabs'=>array(        

       

        'Saved jobs'=>array('ajax'=>$this->createUrl('Savedjobs/savedjobs&id='.$userid)),

    	'Jobs applied'=>array('ajax'=>$this->createUrl('Applied_jobs/appliedjobs&id='.$userid)),    		

    	'Job alerts'=>array('ajax'=>$this->createUrl('ajax')),

    ),

    

    'options'=>array(

        'collapsible'=>true,

    ),

    'id'=>'Myjobs',

));



I want to change the background color of the selected tab ,how I can achieve that

You could use or create a theme that colours the tabs for you, or apply your own styles to override the relevant classes, such as ui-tabs-active.