/* author: Ben Drury */
/* Creation date: 14/01/2006 */
/********************************/
/* global variables			 	*/
/********************************/

var imagery_total = 31

/********************************/
/* random number generator	 	*/
/********************************/

function get_rnd(multiple)
{
	return Math.round(Math.random() * multiple)
}

