/*
 *  social-bookmarking.js
 *  Version 0.1
 */

// replace with your URL here
var image_dir="../vwfiles/shared/$FILE/";

function add_tool(icon, name, url) {
  document.write('<span class="social-add-button" id="social-add-button-' + icon + '"><a href="' + url + '" title="Add to ' + name +'" target="_blank"><img src="' + image_dir + '/' + icon + '.png" alt="' + name + ' icon" /></a></span>');
}

function add_all() {
  var title = encodeURIComponent(document.title);
  var url = encodeURIComponent(document.URL);

// add your social bookmarks here
  add_tool('mister_wong', 'Mister Wong', 'http://www.mister-wong.de/index.php?action=addurl' + url + '&amp;title=' + title);
  add_tool('digg', 'Digg', 'http://digg.com/submit?phase=2&url=' + url + '&amp;t=' + title);
  add_tool('delicious', 'Delicious ', 'http://del.icio.us/post?url=' + url + '&amp;title=' + title);
  add_tool('google_bookmarks', 'Google Bookmarks', 'http://www.google.com/bookmarks/mark?op=add&bkmk=' + url + '&amp;t=' + title);
  add_tool('stumbleupon', 'StumbleUpon', 'http://www.stumbleupon.com/submit?url=' + url + '&amp;title=' + title);
}

add_all();