I recommend you don't use JQueryUI at all for this - it's a very simple animation and can be easily done without loading UI:
// DOM ready
$(function(){
// Self-executing recursive animation
(function pulse(){
$('#my_div').delay(200).fadeOut('slow').delay(50).fadeIn('slow',pulse);
})();
});