// JavaScript Document



function  friendlinks()
{
	var x = document.getElementById("glbm");
	var y= document.getElementById("glb");
	if(x)
	  {
		x.onmouseover= function(){	y.style.display = "block"; }
		y.onmouseout= function(){	y.style.display = "none";  }
		x.onmouseout= function(){ y.style.display = "none";  }
	  }
}

function initIt()
{
	//temp = document.all.tags("ul");
	temp=document.getElementById("parent").all.tags("ul");
	for (i=1; i<temp.length; i++) temp(i).style.display = "none";
}

function restoreIt()
{
	temp=document.getElementById("parent").all.tags("ul");
	for (i=0; i<temp.length; i++) temp(i).style.display = "none";
}

function shrinkexpand(h,id) 
{
	restoreIt();
	eval(id).style.display = "block";
	h.style.backgroundcolor="#fbe8ae";
}


