// JavaScript Document

window.onload = function() { 
	Blush('e0', 'Y2');
}

var aSection;
var bSection;
var cSection;
var dSection;

function Show(id, stickid){
	var obj=document.getElementById(id);
	var obj2=document.getElementById(stickid);
	if (aSection) {
		aSection.className="authorinfo";
	}
	obj.className="showauthorinfo";
	aSection=obj;
	if (bSection) bSection.className="headertitle";
	obj2.className="sideMenu";
	bSection=obj2;
}

function UnShow(){
	aSection.className="authorinfo";
	 bSection.className="headertitle";
}

function Blush(id, stickid){
	var obj3=document.getElementById(id);
	var obj4=document.getElementById(stickid);
	if (cSection) cSection.style.display="none";
	obj3.style.display="block";
	cSection=obj3;
	if (dSection) dSection.className="";
	obj4.className="sideList";
	dSection=obj4;
}
