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.'";
	Quote[4]="'There must be a tool out there that can do this.'";
	Quote[4]="'Knot you again!'";
	Quote[4]="'It's not a mistake, its a design feature'";
	Quote[4]="'Don't worry, the trim will hide it'";
	return Quote[QNum];
}

function RandInt(Size){
	var Rnum=Math.round(Math.random()*Size);
	return Rnum;
}


