window.onload = function() {
	function Each(list, fun) {
		for ( var i = 0, len = list.length; i < len; i++) {
			fun(list[i], i);
		}
	};

	var objs = $("idNum").getElementsByTagName("li");

	var tv = new TransformView("idTransformView", "idSlider", 175, 3, {
		onStart : function() {
			Each(objs, function(o, i) {
				o.className = tv.Index == i ? "on" : "";
			})
		}// °´Å¥ÑùÊ½
		});

	tv.Start();

	Each(objs, function(o, i) {
		o.onmouseover = function() {
			o.className = "on";
			tv.Auto = false;
			tv.Index = i;
			tv.Start();
		}
		o.onmouseout = function() {
			o.className = "";
			tv.Auto = true;
			tv.Start();
		}
	});
	content01 = getObj('01');
	content02 = getObj('02');
	content03 = getObj('03');
	content04 = getObj('04');
	content05 = getObj('05');
	content06 = getObj('06');
}