// dummy entries so nothing is logged... 
if (!window.console || !window.console.firebug) {
	var names = ["dir", "dirxml", "group", "groupEnd", "trace", "profile", "profileEnd"];
	var logFx = ["log", "debug", "info", "warn", "error"];
  var others = ['assert', 'count', 'time', 'timeEnd'];
	window.console = {};
	// no more javascript errors in non-firefox browsers
	for (i in names) {
		window.console[names[i]] = function() {};
	}
	for (i in logFx) {
		window.console[logFx[i]] = function() {};
	}
  for (i in others) {
    window.console[others[i]] = function() {};
	}
}

