var theImages = new Array()

//Random-loading images
theImages[0] = '/csea_image/csea_bigpic/hpbigpic_01.jpg'
theImages[1] = '/csea_image/csea_bigpic/hpbigpic_02.jpg'
theImages[2] = '/csea_image/csea_bigpic/hpbigpic_03.jpg'
theImages[3] = '/csea_image/csea_bigpic/hpbigpic_04.jpg'
theImages[4] = '/csea_image/csea_bigpic/hpbigpic_05.jpg'
theImages[5] = '/csea_image/csea_bigpic/hpbigpic_06.jpg'
theImages[6] = '/csea_image/csea_bigpic/hpbigpic_07.jpg'
theImages[7] = '/csea_image/csea_bigpic/hpbigpic_08.jpg'


var p = theImages.length;

var whichImage = Math.round(Math.random()*(p-1));

function showImage(){
if(whichImage==0){
document.write('<img src="/MemberHome/Portals/1/'+theImages[whichImage]+'" border=0 width=824 height=477>');
}
else if(whichImage==1){
document.write('<img src="/MemberHome/Portals/1/'+theImages[whichImage]+'" border=0 width=824 height=447>');
}
else if(whichImage==2){
document.write('<img src="/MemberHome/Portals/1/'+theImages[whichImage]+'" border=0 width=824 height=447>');
}
else if(whichImage==3){
document.write('<img src="/MemberHome/Portals/1/'+theImages[whichImage]+'" border=0 width=824 height=447>');
}
else if(whichImage==4){
document.write('<img src="/MemberHome/Portals/1/'+theImages[whichImage]+'" border=0 width=824 height=447>');
}
else if(whichImage==5){
document.write('<img src="/MemberHome/Portals/1/'+theImages[whichImage]+'" border=0 width=824 height=447>');
}
else if(whichImage==6){
document.write('<img src="/MemberHome/Portals/1/'+theImages[whichImage]+'" border=0 width=824 height=447>');
}
else if(whichImage==7){
document.write('<img src="/MemberHome/Portals/1/'+theImages[whichImage]+'" border=0 width=824 height=447>');
}
}

showImage();
