function $(id){return document.getElementById(id)};

function getRandomNum(min,max){
	return min+Math.floor(Math.random()*(max-min+1));
}