function ora_international() {
	var aImages = new Array;
	this.aImages = aImages;
	
	function getImage(num) {
		document.write('<IMG SRC="'+this.aImages[num][0]+'" WIDTH="'+this.aImages[num][1]+'" HEIGHT="'+this.aImages[num][2]+'" ALT="'+this.aImages[num][3]+'" BORDER="0"><BR>');
	}
	this.getImage = getImage;
	
	this.getRandomImage = function(useCookie) {
		var randNum = '';
		if (useCookie) {
			randNum = getCookie(useCookie);
			if (randNum) {
				setImgCookie(useCookie, '');
				randNum = randNum.replace('img','');
			}
		}
		if (!randNum || randNum == '') {
			randNum = Math.random();
			randNum*= this.aImages.length;
			randNum = parseInt( randNum );
			if ( isNaN(randNum) ) randNum = 0;
		}
		this.getImage( randNum );
		randNum = randNum.toString();
		randNum = 'img'+randNum;
		setImgCookie(useCookie, randNum);
	}
	this.addImage = function(imgURL,imgWidth,imgHeight,imgAlt) {
		imgWidth  = (!imgWidth)  ? '610' : imgWidth;
		imgHeight = (!imgHeight) ? '80'  : imgHeight;
		imgAlt    = (!imgAlt)    ? '*'   : imgAlt;
		this.aImages[this.aImages.length] = new Array(imgURL,imgWidth,imgHeight,imgAlt);
	}
	this.setImgCookie = function(name, value) {
		document.cookie=name+'='+value+'; path=/;';
	}
	return this;
 }