function ie_object(obj)
{
		this.css1 = obj;
		this.hide = hide_me;
		this.show = show_me;
		this.set_left = set_left;
		this.get_visibility = get_visibility;
}
function hide_me()
{
		this.css1.style.visibility = "hidden";
}
function show_me()
{
		this.css1.style.visibility = "inherit";
}
function set_left(left)
{
		this.css1.style.left = left;
}
function get_visibility()
{
		return this.css1.style.visibility;
}
function setup()
{
		thegrp = document.all.tags("DIV");
		thegroup = new Array(thegrp.length);
		thenamedgrp = new Array(thegrp.length);
		for (i = 0; i < thegrp.length; i++)
		{
				thegroup[i] = new ie_object(thegrp[i]);
				thenamedgrp[thegrp[i].id] = new ie_object(thegrp[i]);
		}
}