function random_left(){
// image array
	var leftImage = new Array()
	leftImage[1] = "../col_imgs/lc_img01.jpg"
	leftImage[2] = "../col_imgs/lc_img02.jpg"
	leftImage[3] = "../col_imgs/lc_img03.jpg"
	leftImage[4] = "../col_imgs/lc_img01.jpg"
	leftImage[5] = "../col_imgs/lc_img02.jpg"
	leftImage[6] = "../col_imgs/lc_img03.jpg"

// link array -- should be the same number of, and in same order as images above
// links should use the   http:...   beginning
	var imgUrl = new Array()
	imgUrl[1] = "#"
	imgUrl[2] = "#"
	imgUrl[3] = "../a_main/comments.html"
	imgUrl[4] = "#"
	imgUrl[5] = "#"
	imgUrl[6] = "../a_main/comments.html"

	var il = Math.floor(Math.random()*leftImage.length)
		if (il == 0)
			il = 1
	
	// doesn't seem to recognize onMousedown, onMouseup or onClick .so. clicking image without addy still shows status bar
	if (imgUrl[il]== "#") {	
		document.write('<a href='+'"'+imgUrl[il]+'"'+' style='+'"'+'cursor:default;'+'"'+' onMouseover="'+'return changeStatBar'+'(\'\')'+'"><img src="'+leftImage[il]+'" border=0></a>')
 
	}else if (imgUrl[il]!= "#") {
		document.write('<a href='+'"'+imgUrl[il]+'"'+'target='+'"'+'_parent'+'"><img src="'+leftImage[il]+'" border=0></a>')
	
	}
	}
		
		
function random_right(){
// image array
	var rightImage = new Array()
	rightImage[1] = "../col_imgs/rc_img01.jpg"
	rightImage[2] = "../col_imgs/rc_img02.jpg"
	rightImage[3] = "../col_imgs/rc_img03.jpg"

// link array -- should be the same number of, and in same order as images above
// links should use the   http:...   beginning
	var imgUrl = new Array()
	imgUrl[1] = "#"
	imgUrl[2] = "#"
	imgUrl[3] = "../download/Chappys%20Fax%20Order%20Form%20(112).pdf"

	var il = Math.floor(Math.random()*rightImage.length)
		if (il == 0)
			il = 1
	
	// doesn't seem to recognize onMousedown, onMouseup or onClick .so. clicking image without addy still shows status bar
	if (imgUrl[il]== "#") {	
		document.write('<a href='+'"'+imgUrl[il]+'"'+' style='+'"'+'cursor:default;'+'"'+' onMouseover="'+'return changeStatBar'+'(\'\')'+'"><img src="'+rightImage[il]+'" border=0></a>')
 
	}else if (imgUrl[il]!= "#") {
		document.write('<a href='+'"'+imgUrl[il]+'"'+'target='+'"'+'_parent'+'"><img src="'+rightImage[il]+'" border=0></a>')
	
	}
	}
	
// remember to include ... onMouseover="return changeStatBar('message') ... inside link ...
function changeStatBar(statbarmsg){
	window.status=statbarmsg
	return true
}