
// --------------------------------------------------------------------
//
// This is a Greasemonkey user script.  To install it, you need
// Greasemonkey 0.3 or later: http://greasemonkey.mozdev.org/
// Then restart Firefox and revisit this script.
// Under Tools, there will be a new menu item to "Install User Script".
// Accept the default configuration and install.
//
// To uninstall, go to Tools/Manage User Scripts,
// select "Hello World", and click Uninstall.
//
// --------------------------------------------------------------------
//
// ==UserScript==
// @name          ffffound bookmarking
// @namespace     http://merkwelt.com/people/stan/ffffound
// @description   make images in ffffound bookmarkable
// @include       http://ffffound.com/*
// @include       http://wwww.ffffound.com/*
// ==/UserScript==

var allImages = document.getElementsByTagName('img');
for (var i = 0; i < allImages.length; i++) {
    image = allImages[i];
    if(image.id.indexOf("asset")==0)
    {
        
        title=image.parentNode.parentNode.parentNode.parentNode.parentNode.parentNode.parentNode.innerHTML;
        title=title.substring(title.indexOf('outbound\'\);\"\>')+13);
        title=title.substring(0,title.indexOf('<'));
                
        link="http://del.icio.us/post?v=4;url="+ escape(image.parentNode.href)+";title=ffffound%20"+escape(title)+";tags=ffffound";
            
        delicious=document.createElement("div");  
        delicious.innerHTML = '<a href="'+link+'"><img src="http://del.icio.us/favicon.ico"/></a>';
        image.parentNode.parentNode.appendChild(delicious);
    }

}


