// JavaScript Document

window.onload = function() { 
	Show('panel1', 'banner1', 'banner1a');
}

var aSection;
var bSection;
var cSection;

function Show(id, stickid, lastid){
	var obj=document.getElementById(id);
	var obj2=document.getElementById(stickid);
	var obj3=document.getElementById(lastid);
	if (aSection) {
		aSection.className="nopanel";
	}
	obj.className="showpanel";
	aSection=obj;
	//if (bSection) bSection.className="nobutton";
	obj2.className="showbutton";
	bSection=obj2;
	//if (cSection) cSection.className="showbutton";
	obj3.className="nobutton";
	cSection=obj3;
	jumpScroll();
}

function UnShow(){
	 bSection.className="nobutton";
	 cSection.className="showbutton";
}

function jumpScroll() {
   	window.scroll(0,0); // horizontal and vertical scroll targets
}

/* 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;
} */
