CGridView pagination at top

Is it possible to add pagination to the top so its not just at the bottom?


$this->widget('zii.widgets.grid.CGridView', array(

	'id'=>'id-grid',

	'dataProvider'=>  $dataprovider ,

        'template'=>"{pager}\n{items}\n{pager}", //THIS DOES WHAT YOU WANT

        'filter'=>$filters,

	'columns'=>array(

        //....



Thanks!