//some small utils

window.log = (typeof console != "undefined") ? console.log : alert;

String.prototype.replaceAll = function(target, replacement){
	return this.split(target).join(replacement);
};

Array.prototype.getLast = function(){
	return this[this.length-1];
};



