﻿(function() {

/* Keep everything in BG variable
    augment existing variable if it exists.
*/
if ( !window.BG || typeof window.BG !== 'object') {
    window.BG = {};
}
var BG = window.BG;

BG.votdWriteCallback = function(json) {
    var votd = json.votd;
    document.write('<p><i>' + votd.text);
    document.write('<br />(<a href="' + votd.permalink +'">' + votd.reference + '</i></a>)');
    document.write('</p>');
};

window.BG = BG;


})();

