How to center the title of the dialog

How to center the title of the dialog


How to center the title of the dialog in this example ?
Libraries version:
jquery-1.3.js
jquery-ui-personalized-1.6rc5.js
$(document).ready(function()
{
$("#myDialog").hide();
$('#myButton').click(function()
{
$("#myDialog").dialog(
{
width:450,
height: 300,
position:"center",
title: "this is my title",
resizable:false
});
});
});
<div class="ui-dialog" id='myDialog' >
<form action='' id='myForm'>
...
</form>
</div>
<button type="submit" class="ui-state-default ui-state-hover ui-
corner-all" id="myButton">Open</button>