/**
** A fix for the console not being available everywhere.
*/
if( typeof console == "undefined" ) {
	console = {};
	console.log = function(){}
}
