function thecomment() {	
	if (document.getElementById("shout").style.display == "none") {
		document.getElementById("shout").style.display = "inline";	
	} else {
		if (document.getElementById("shout").style.display == "inline") {
			document.getElementById("shout").style.display = "none";
		}	
	}	
}




var DHTML = (document.getElementById || document.all || document.layers);

function getObj(name)
{
  if (document.getElementById)
  {
  	this.obj = document.getElementById(name);
	this.style = document.getElementById(name).style;
  }
  else if (document.all)
  {
	this.obj = document.all[name];
	this.style = document.all[name].style;
  }
  else if (document.layers)
  {
   	this.obj = document.layers[name];
   	this.style = document.layers[name];
  }
}

function banana()
{
	
	if (navigator.appName == "Microsoft Internet Explorer") {
		position = document.body.scrollTop;
	}
	else {
		position = window.pageYOffset;
	}
	
	
	if (!DHTML) return;
	var x = new getObj('sidebar');

	if (position < 210) {
		x.style.top =  210 - position;
	}

	if (position > 210) {
		x.style.top = 0;
	}

}

function coconut()
{
	
	if (navigator.appName == "Microsoft Internet Explorer") {
		position = document.body.scrollTop;
	}
	else {
		position = window.pageYOffset;
	}
	
	
	if (!DHTML) return;
	var x = new getObj('sidebar');

	if (position < 210) {
		x.style.marginTop =  0;
	}

	if (position > 210) {
		x.style.marginTop = position - 210;
	}

}	

window.onscroll = coconut;
