function MQuote(QNum){
	var Quote=new Array();
	Quote[0]="'Measure Twice -- Cut Once'";
	Quote[1]="'I've cut it twice and it's still too short.'";
	Quote[2]="'Any day is a good day to work wood.'";
	Quote[3]="'A keen eye is just as important as a keen edge.'";
	Quote[4]="'A woodworker and his money are soon parted.'";
	return Quote[QNum];
}

function RandInt(Size){
	var Rnum=Math.round(Math.random()*Size);
	return Rnum;
}

