/**
 * The RDFa Javascript template.
 *
 * Ben Adida - ben@mit.edu
 * 2006-03-21
 * 2006-05-22 moved to W3C
 *
 * licensed under GPL v2
 */


// configuration information
var RDFA = new Object();
RDFA.url = 'http://www.w3.org/2001/sw/BestPractices/HTML/rdfa-bookmarklet/2006-05-22/rdfa.js';

RDFA.CALLBACK_DONE_PARSING = function() {

    //
    // Your Code Goes Here
    //

}

//
// Everything below is used only for loading the RDF/A javascript.
// You probably don't need to look at it.
//

// callback when the RDF/A parsing is done.
RDFA.CALLBACK_DONE_LOADING = function() {
    RDFA.parse();
}

RDFA.load = function()
{
    var s = document.createElement("script");
    s.type = 'text/javascript';
    s.src = RDFA.url;

    // add it to the document tree, load it up!
    document.getElementsByTagName('head')[0].appendChild(s);
}

RDFA.load();