function changepic(objName){
	this.obj = objName;
	this.aNodes = [];
	this.currentchangepic = 0;
	
};

// ADD NEW changepic
changepic.prototype.add = function(changepicType, changepicPath, changepicDuration, height, width, hyperlink) {
	this.aNodes[this.aNodes.length] = new Node(this.obj +"_"+ this.aNodes.length, changepicType, changepicPath, changepicDuration, height, width, hyperlink);
};

// Node object
function Node(name, changepicType, changepicPath, changepicDuration, height, width, hyperlink) {
	this.name = name;
	this.changepicType = changepicType;
	this.changepicPath = changepicPath;
	this.changepicDuration = changepicDuration;
	this.height = height
	this.width = width;
	this.hyperlink= hyperlink;
//	alert (name +"|" + changepicType +"|" + changepicPath +"|" + changepicDuration +"|" + height +"|" + width + "|" + hyperlink);
};

// Outputs the changepic to the page
changepic.prototype.toString = function() {
	var str = ""
	for (var iCtr=0; iCtr < this.aNodes.length; iCtr++){
		str = str + '<span name="'+this.aNodes[iCtr].name+'" '
		str = str + 'id="'+this.aNodes[iCtr].name+'" ';
		str = str + 'class="changepic_hide" ';
		str = str + 'bgcolor="#FFFCDA" ';	// CHANGE BANNER COLOR HERE
		str = str + 'align="center" ';
		str = str + 'valign="top" >\n';
		if (this.aNodes[iCtr].hyperlink != ""){
			str = str + '<a href="'+this.aNodes[iCtr].hyperlink+'">';
		}
			
		if ( this.aNodes[iCtr].changepicType == "FLASH" ){
			str = str + '<OBJECT '
			str = str + 'classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" '
			str = str + 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" '
			str = str + 'WIDTH="'+this.aNodes[iCtr].width+'" '
			str = str + 'HEIGHT="'+this.aNodes[iCtr].height+'" '
			str = str + 'id="bnr_'+this.aNodes[iCtr].name+'" '
			str = str + 'ALIGN="" '
			str = str + 'VIEWASTEXT>'
			str = str + '<PARAM NAME=movie VALUE="'+ this.aNodes[iCtr].changepicPath + '">'
			str = str + '<PARAM NAME=quality VALUE=high>'
			str = str + '<PARAM NAME=bgcolor VALUE=#FFFCDA>'
			str = str + '<EMBED ';
			str = str + 'src="'+this.aNodes[iCtr].changepicPath+'" '
			str = str + 'quality=high '
//			str = str + 'bgcolor=#FFFCDA '
			str = str + 'WIDTH="'+this.aNodes[iCtr].width+'" '
			str = str + 'HEIGHT="'+this.aNodes[iCtr].height+'" '
			str = str + 'NAME="bnr_'+this.aNodes[iCtr].name+'" '
			str = str + 'ALIGN="center" '
			str = str + 'TYPE="application/x-shockwave-flash" '
			str = str + 'PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer">'
			str = str + '</EMBED>'
			str = str + '</OBJECT>'
		}else if ( this.aNodes[iCtr].changepicType == "IMAGE" ){
			str = str + '<img src="'+this.aNodes[iCtr].changepicPath+'" ';
			str = str + 'border="0" ';
			str = str + 'height="'+this.aNodes[iCtr].height+'" ';
			str = str + 'width="'+this.aNodes[iCtr].width+'">';
		}

		if (this.aNodes[iCtr].hyperlink != ""){
			str = str + '</a>';
		}

		str += '</span>';
	}
	return str;
};

// START THE changepic ROTATION
changepic.prototype.start = function(){
	this.changechangepic();
	var thischangepicObj = this.obj;
	// CURRENT changepic IS ALREADY INCREMENTED IN cahngechangepic() FUNCTION
	setTimeout(thischangepicObj+".start()", this.aNodes[this.currentchangepic].changepicDuration * 1000);
}

// CHANGE changepic
changepic.prototype.changechangepic = function(){
	var thischangepic;
	var prevchangepic = -1;
	if (this.currentchangepic < this.aNodes.length ){
		thischangepic = this.currentchangepic;
		if (this.aNodes.length > 1){
			if ( thischangepic > 0 ){
				prevchangepic = thischangepic - 1;
			}else{
				prevchangepic = this.aNodes.length-1;
			}
		}
		if (this.currentchangepic < this.aNodes.length - 1){
			this.currentchangepic = this.currentchangepic + 1;
		}else{
			this.currentchangepic = 0;
		}
	}
	

	if (prevchangepic >= 0){
		document.getElementById(this.aNodes[prevchangepic].name).className = "changepic_hide";
	}
	document.getElementById(this.aNodes[thischangepic].name).className = "changepic_show";
}

