function $(id){
			var	result = arguments.length === 1 ? document.getElementById(id) : 0;
			if(!result) {
				result = [];
				for(var i = 0, j = arguments.length; i < j; i++)
					result.push(document.getElementById(arguments[i]));
			};
			return result;
		};
		function acc(el){
			var speedChng = 17;
			function show(){
				this.style.display='';
				bytefx.size(this, {width:this.Width,height:this.Height}, speedChng);
			};
			function hide(){
				bytefx.size(this, {width:this.Width,height:1}, speedChng, function(){
					this.style.display = "none";
				});
			};
			function begin(){
				for(var j = 0; j < max; j++) {
					if(j !== i)
						el[j].hide();
				};
				this.show();
			};
			var	tmp, i = 0, max = el.length;
			for(; i < max; i++) {
				tmp = bytefx.$size(el[i]);
				el[i].Height = tmp.height;
				el[i].Width = tmp.width;
				el[i].show = show;
				el[i].hide = hide;
				el[i].begin = begin;
			};
			return {
				begin:function(idx){
					if(!idx || idx >= el.length)
						idx = 0;
					el[idx].begin();
				}
			}
		};
function loadAccordion(){
	for(var	tmp = $('id1','id2','id3','id4','id5','id6','id7','id8','id9','id10'), a = acc(tmp), i = 0; i < tmp.length; i++) {
		tmp[i].style.display = "none";
		a = tmp[i].parentNode.childNodes[0];
		if(!a.innerHTML)
			a = tmp[i].parentNode.childNodes[1];
		bytefx.$event(a, "onmouseover", function(){
			this.style.background = "#D5D5D5";
		});
		bytefx.$event(a, "onmouseout", function(){
			this.style.background = "#EAE9E9";
		});
	};
	tmp[0].begin();
	
	document.getElementById('copy').onmouseover = function(){
		//loadAccordion();
		//setTimeout('loadAccordion()',1000);
	}
}