$(function(){
    $('.datepicker').datepicker({dateFormat: 'dd/mm/yy'});
    $('.tooltip A IMG').tooltip({ 
        delay: 0, 
        showURL: false, 
        bodyHandler: function() { 
            return $("<img/>").attr("src", this.src); 
        },
        top: -290
    });
    $('.price-breaks').tooltip({
        delay: 0, 
        showURL: false,
        bodyHandler: function() { 
            var html = $($(this).attr('href')).html();
            return html; 
        }
    }).click(function(){
        return false;
    });
});
