//
//	make a fake console.log for browsers missing it -- it will just swallow any calls and prevent dumb js errors
//

(function(__global){
  if (!__global.console || (__global.console && !__global.console.log)) {
    __global.console = {
      log: (__global.opera && __global.opera.postError)
        ? __global.opera.postError
        : function(){ }
    }
  }
})(this);

