cl = function() {};
try {
	cl = (!(console && console.log))? cl : function() {
		if (arguments.length == 0) {
			return console.log('here');
		}
		console.log.apply(console, arguments)
		return true;
	};
} catch (e) {
	cl = function() {};
}
pa = cl;
//cl = alert;
