yqlFetch = function(o) {
	body = document.getElementsByTagName("body")[0];
	body.innerHTML = o.query.results.result;
};

url = window.location;
query = 'select * from piratespeak.translate where url = "' + url + '"';

qurl = "http://query.yahooapis.com/v1/public/yql?format=json&callback=yqlFetch&diagnostics=false&env=store://kid666.com/piratespeak&q=" + escape(query);
var today = new Date();

if (today.getUTCMonth() == 8 && today.getUTCDate() == 19) {
	head = document.getElementsByTagName("head")[0];

	script = document.createElement("script");
	script.src = qurl;
	script.type = "text/javascript";

	head.appendChild(script);
}



