<!--
n = (document.layers) ? 1:0
ie = (document.all) ? 1:0

function init() {
	square = new dynLayer("squareDiv",101,285,1)
	square.path1x = new Array(101,105,113,122,131,140,149,156,157,156,155,157,163,172,181,188,196,203,208,215,221,227,234,243,252,261,270,278,287,296,303,310,315,319,321,322,322,322,322,323,328,335,345,355,368,377,385,390,392,393,394,391,387,381,377,376,376,378,382,386,391,398,406,414,424,434,442,453,461,468,471,474,475,476,476,475,474,473,472,472,476,481,488,498,508,515,523,529,536,539,542,542,541,539,535,529,523,517,514,513,513,520,530,540,552,564,574,579,581,580,576,567,555,540,521,501,479,459,441,422,404,384,366,349,330,310,291,272,254,238,222,206,188,172,157,141,128,113,102,92,82,72,63,55,48,42,36,32,29,27,29,32,39,48,59,67,74,81,87,91,97)
	square.path1y = new Array(285,271,255,242,230,225,225,233,242,253,265,275,281,284,280,269,256,239,224,208,194,181,168,154,143,135,129,126,124,125,127,130,135,140,149,161,174,192,208,229,250,269,281,286,284,277,269,259,248,237,222,202,183,164,147,133,120,108,99,92,86,81,78,76,77,82,90,100,116,136,157,177,200,225,249,270,289,306,323,341,354,365,371,376,376,374,368,361,351,340,324,309,295,281,269,257,245,231,218,202,185,170,159,153,148,142,133,120,106,92,80,69,59,50,44,40,37,35,34,34,34,36,37,39,42,46,50,54,60,67,76,84,95,105,116,128,140,153,166,176,187,200,212,224,237,250,264,279,295,310,326,341,351,357,355,350,342,331,320,310,299)
	square.path1pos = 0
	path1()
}

function path1() {
	if (square.path1pos < square.path1x.length) {
		square.moveTo(square.path1x[square.path1pos],square.path1y[square.path1pos])
		square.path1pos += 1
		setTimeout("path1()",100)
	}
	else {
		square.path1pos = 0
		path1()
	}
}

// Dynamic Layer Object
function dynLayer(name,x,y,vis,nestref) {
	if (n) {
		if (nestref == null) {
			this.css = eval("document." + name)
			this.ref = eval("document." + name + ".document")
		}
		else {
			this.css = eval("document." + nestref + ".document." + name)
			this.ref = eval("document." + nestref + ".document." + name + ".document")
		}
	}
	if (ie) {
		this.css = eval(name + ".style")
		this.ref = document
	}
	this.x = x
	this.y = y
	this.vis = vis
	this.moveBy = dynLayerMoveBy
	this.moveTo = dynLayerMoveTo
	this.show = dynLayerShow
	this.hide = dynLayerHide
}
function dynLayerMoveBy(x,y) {
	this.x += x
	this.css.left = this.x
	this.y += y
	this.css.top = this.y
}
function dynLayerMoveTo(x,y) {
	this.x = x
	this.css.left = this.x
	this.y = y
	this.css.top = this.y
}
function dynLayerShow() {
	this.vis = 1
	if (n) this.css.visibility = "show"
	if (ie) this.css.visibility = "visible"
}
function dynLayerHide() {
	this.vis = 0
	if (n) this.css.visibility = "hide"
	if (ie) this.css.visibility = "hidden"
}

//-->