$j = jQuery.noConflict();
$j(document).ready(function() {
  $j('.simpletip').simpletip(
  {
    fixed: true,
    position: ["0", "0"],
    onShow: function()
    { 
      this.getParent().find('.tooltip').html($j('#'+this.getParent().attr('id')+'-content').html()) 
    } // Configuration properties  content: 'My Simpletip' });

  });
});

