I am trying to find here http://jqueryui.com/demos/datepicker/#options how to initialize/show the datepicker according to the right offset
(I was performing a demo but i dont know why this fiddle does not work http://jsfiddle.net/vybbh/2/)

Anyone knows how to customize the position of the calendar?
EDIT
$(function()
{
$('.date-pick')
.datePicker({clickInput:true})
.bind('click',
function()
{
left = $('#dp-popup').css('left');
$('#dp-popup').css({'left':left+55});
/*left = $('#dp-popup').css('left')+55;
$('#dp-popup').css({'left':left});*/
}
)
});
found this but the +55 is not making any effect