// Replace with your URL here
var image_dir="http://ShipWatcher.com/bookmarking/images";
//var image_dir="/bookmarking/images";

function add_tool(icon, name, url) {
  document.write('<span class="socialAddButton" id="socialAddButton-' + icon + '"><a href="' + url + '" target="_blank" title="Add to ' + name +'"><img height="16px" width="16px" src="' + image_dir + '/' + icon + '.png" title="add to ' + name + '" /></a></span> ');
}

function add_all() {
  var title = encodeURIComponent(document.title);
  var url = encodeURIComponent(document.URL);
  
  if(typeof(thisUrl)!='undefined') {
    url = encodeURIComponent(thisUrl);
    }
    
  if(typeof(thisTitle)!='undefined') {
    title = encodeURIComponent(thisTitle);
    }
    
  add_tool('delicious', 'del.icio.us', 'http://del.icio.us/post?url=' + url + '&amp;title=' + title);
  add_tool('digg', 'digg', 'http://digg.com/submit?phase=2&amp;url=' + url + '&amp;title=' + title);
  add_tool('Facebook', 'Facebook', 'http://facebook.com/share.php?u=' + url + '&amp;t=' + title);
  add_tool('Google', 'Google', 'http://www.google.com/bookmarks/mark?bkmk=' + url + '&amp;title=' + title);
  add_tool('Myspace', 'Myspace', 'http://www.myspace.com/Modules/PostTo/Pages/?u=' + url + '&amp;t=' + title);
  add_tool('Stumbleupon', 'Stumbleupon', 'http://www.stumbleupon.com/submit?url=' + url + '&amp;title=' + title);
  add_tool('Twitter', 'Twitter', 'http://twitter.com/home/?status=' + url + '%20' + title );
}

add_all();