var leftimage = new Array() 
leftimage[1]="templates/1/images/top_left_01.jpg"
leftimage[2]="templates/1/images/top_left_02.jpg"
leftimage[3]="templates/1/images/top_left_03.jpg"
leftimage[4]="templates/1/images/top_left_04.jpg"
leftimage[5]="templates/1/images/top_left_05.jpg"
leftimage[6]="templates/1/images/top_left_06.jpg"
leftimage[7]="templates/1/images/top_left_08.jpg"
leftimage[8]="templates/1/images/top_left_09.jpg"
leftimage[9]="templates/1/images/top_left_10.jpg"
leftimage[10]="templates/1/images/top_left_11.jpg"
leftimage[11]="templates/1/images/top_left_12.jpg"
leftimage[12]="templates/1/images/top_left_07.jpg"

var rightimage = new Array() 
rightimage[1]="templates/1/images/top_right_01.jpg"
rightimage[2]="templates/1/images/top_right_02.jpg"
rightimage[3]="templates/1/images/top_right_03.jpg"
rightimage[4]="templates/1/images/top_right_04.jpg"
rightimage[5]="templates/1/images/top_right_05.jpg"
rightimage[6]="templates/1/images/top_right_06.jpg"
rightimage[7]="templates/1/images/top_right_08.jpg"
rightimage[8]="templates/1/images/top_right_09.jpg"
rightimage[9]="templates/1/images/top_right_10.jpg"
rightimage[10]="templates/1/images/top_right_11.jpg"
rightimage[11]="templates/1/images/top_right_12.jpg"
rightimage[12]="templates/1/images/top_right_07.jpg"

random_num = (Math.round((Math.random()*11)+1))

function showImage() {
	document.write('<img border="0" src="'+leftimage[random_num]+'">');
}
function showImage1() {
	document.write('<img border="0" src="'+rightimage[random_num]+'">');
}