// Random number generator (between 0 and n)
// KyleOlsonDesign.com
// 2/21/09

var koRandom = function(n){
	return Math.floor(Math.random()*n);
};