// JavaScript Document
// DivMagic
// This module hides and show specified div sections
//
// Author: Ian Frizzell [infrizzell@xaossoft.com]
// Copyright 2008 Xaossoft
// 

// Consturctor
// Parameters: idlist - an array of ids that will be hidden/shown
function DivMagic(idlist){
	this.divid = idlist;
}

// changeSection
// Parameters: id = id to show
// Description: Function will hide all divs, then show the one specified
DivMagic.prototype.changeSection = function(id){
	for(var i=0; i < this.divid.length;i++){
		document.getElementById(this.divid[i]).style.display = "none";
	}			
	document.getElementById(id).style.display = "block";
}