function random_img()
{

	// specify random image names & alt text
	// add more lines as needed

	var myimages=new Array();

	myimages[0]="gfx/ipac_home-1.jpg";
	myimages[1]="gfx/ipac_home-2.jpg";
	myimages[2]="gfx/ipac_home-3.jpg";

	//generate random number

	var ry=Math.floor(Math.random()*myimages.length)


	document.write('<img src="'+myimages[ry]+'" WIDTH=374 HEIGHT=315 border=0 ALT="">')
	document.write('<img src=gfx/ipac_new_04.gif width=231 height=315 border=0 ALT="">')
}

random_img()
