(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>' + votd.text);
    //document.write('<div align="right" style="font-size:11px;"><i><a style="text-decoration:none;color:#000000;" href="http://www.ministrydb.com/intro.php">Powered by the ministrydb.com</a></i></div>');
    document.write('</div>');
};

window.BG = BG;


})();