
  //var link_images_dir = 'http://www.ultrasize.com/social_bm/images/';
  
  var link_images_dir = 'http://ultrasize.com/social_link_script/images/';

  //var link_images = new Array;

  var social_obj = {

    digg : {
      
      image_url  : link_images_dir + 'digg.gif',

      submit_url : 'http://digg.com/submit?phase=2&amp;url='+encodeURIComponent(location.href)+'&amp;bodytext=&amp;tags=&amp;title='+encodeURIComponent(document.title),

      site_url   : 'http://digg.com'
            
     },

    delicious : {
           
      image_url : link_images_dir + 'del.gif',

      submit_url : 'http://del.icio.us/post?v=2&amp;url='+encodeURIComponent(location.href)+'&amp;notes=&amp;tags=&amp;title='+encodeURIComponent(document.title),

      site_url   : 'http://del.iciou.us'
            
     },

    reddit : {
      
      image_url : link_images_dir + 'reddit.gif',

      submit_url : 'http://reddit.com/submit?url='+encodeURIComponent(location.href)+'&amp;title='+encodeURIComponent(document.title),

      site_url   : 'http://reddit.com/'
          
     },

    netscape : {
      
      image_url : link_images_dir + 'netscape.gif',

      submit_url : 'http://www.netscape.com/submit/?U='+encodeURIComponent(location.href)+'&amp;T='+encodeURIComponent(document.title),

      site_url   : 'http://netscape.com'

     },

    furl : {
      
      image_url : link_images_dir + 'furl.gif',

      submit_url : 'http://www.furl.net/storeIt.jsp?u='+encodeURIComponent(location.href)+'&amp;keywords=&amp;t='+encodeURIComponent(document.title),

      site_url   : 'http://furl.net'

     },

    yahoo : {
      
      image_url : link_images_dir + 'yahoo.gif',

      submit_url : 'http://myweb2.search.yahoo.com/myresults/bookmarklet?t='+encodeURIComponent(document.title)+'&amp;d=&amp;tag=&amp;u='+encodeURIComponent(location.href),

      site_url   : 'http://yahoo.com'

     },

    google : {
      
      image_url : link_images_dir + 'google.gif',

      submit_url : 'http://www.google.com/bookmarks/mark?op=add&amp;hl=de&amp;bkmk='+encodeURIComponent(location.href)+'&amp;annotation=&amp;labels=&amp;title='+encodeURIComponent(document.title),

      site_url   : 'http://google.com'

     }

  };
  
  var key;
  
  var htmlStr = '';

  htmlStr = htmlStr + '<div id="social_link_div">';

  for (key in social_obj)
  { 
    htmlStr += '<a href="'+ social_obj[key].site_url + '" onclick="window.open(\'' +social_obj[key].submit_url+'\');;return false;" ><img id="'+key+'_img" src="' + social_obj[key].image_url + '" /></a>';
  }

  document.write(htmlStr + '</div>');
