
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License version 2 as
// published by the Free Software Foundation. Please see the index.html
// for more details.

function Tux()
{
	this.face = new Face(
		"tux",
		Utilities.getDocumentWidth() / 2 - 215,
		Utilities.getDocumentHeight() / 2 - 102,
		350,
		360,
		new Eye("tux_left_eye", 84, 112, new EyeMovement(25)),
		new Eye("tux_right_eye", 194, 112, new EyeMovement(25))
	);
}


