       function getSocialFeed(socialNetworkID){ //make and open a link to a social bookmarking site..
            // ID's start at 0!
            var pageTitle = escape(document.title); // get the page title.
            var pageURL = document.location; // get the url of the current page.
            var networkURLs = new Array( 
                "http://del.icio.us/post?url=[URL]&amp;title=[TITLE]",
                "http://digg.com/submit?url=[URL]&amp;title=[TITLE]",
                "http://www.facebook.com/sharer.php?u=[URL]&amp;title=[TITLE]",
                "http://reddit.com/submit?url=[URL]&amp;title=[TITLE]",
                "http://twitter.com/submit?url=[URL]&amp;title=[TITLE]",                "http://www.stumbleupon.com/submit?url=[URL]&amp;title=[TITLE]","http://plaxo.com/events?share_link=[URL]&amp;desc=[TITLE]", "http://www.linkedin.com/shareArticle?mini=true&url=[URL]&title=[TITLE]&ro=false&summary=[TITLE]"); // add more here, makign sure to put [URL] and [TITLE] in the correct places.
            
            var targetURL = networkURLs[socialNetworkID].split("[URL]").join(pageURL).split("[TITLE]").join(pageTitle); // replace [URL] and [TITLE] with the page url and page title
            document.location.href = targetURL; // open the link!
            }

