(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('<div style="padding:10px;">' + votd.text);
    document.write('<br />&nbsp;&nbsp;&nbsp;('+ votd.reference+')');
    document.write(' <a target="_blank" href="' + votd.audiolink + '" title="Listen to chapter">&nbsp;&nbsp;<img alt="listen to chapter" src="http://www.biblegateway.com/resources/audio/images/sound.gif" border=0/></a>');
    document.write('</div>');
};

window.BG = BG;


})();

