Maintain resizable within RadListBox after postback asp.net

Maintain resizable within RadListBox after postback asp.net

HI - i'm using jquery to resize a telerik radlistbox which works fine - problem is its lost on postback.  I was wondering if anyone had any ideas on maintaining the resize position on postback. Thanks!
  1.   <telerik:RadListBox ID="cboQuestionsListBox"  RenderMode="Lightweight" DataTextField="ROW_TEXT" DataValueField="ROW_ID" runat="server" Skin="WebBlue" CheckBoxes="true" Width="300px"  Height="340px"> </telerik:RadListBox>

    <script type="text/javascript">

        $(document).ready(function () {

            $("#cboQuestionsListBox").resizable();

        });
    </script>