//Alix, to add a pic just add another entry 
// eg: mge_nfo[24]="yourpic.gif"; would add that pic...
//put the new pics at the bottom and add one each time to the [No] count
//just go with the same syntax thats there already..

var mge_nfo = new Array()
mge_nfo[0]="becomegreat.jpeg";
mge_nfo[1]="beingprocess.jpg";
mge_nfo[2]="birdfood.jpg";
mge_nfo[3]="boldstandfor.jpg";
mge_nfo[4]="catapiller_butterfly.jpg";
mge_nfo[5]="caterpillarnonothing.jpg";
mge_nfo[6]="conqueringoneself.jpg";
mge_nfo[7]="darkenough.jpg";
mge_nfo[8]="feedone.jpeg";
mge_nfo[9]="givelove.jpg";
mge_nfo[10]="halflife.jpg";
mge_nfo[11]="heartspath.jpg";
mge_nfo[12]="improvement.jpeg";
mge_nfo[13]="kitesrise.jpg";
mge_nfo[14]="livingget.jpg";
mge_nfo[15]="mustardseed.jpeg";
mge_nfo[16]="painufeel.jpg";
mge_nfo[17]="seeasweare.jpg";
mge_nfo[18]="seedwesow.jpg";
mge_nfo[19]="smallstones.jpeg";
mge_nfo[20]="spenddays.jpg";
mge_nfo[21]="spiritalive.jpg";
mge_nfo[22]="trackswemake.jpg";
mge_nfo[23]="waitforsuccess.jpg";







//no need to edit anything from this point

function ld_r_pic()
{
picts = document.createElement("IMG");

if(!document.getElementById('random_pic'))
 {
picts.setAttribute("src", "inspirepicts/"+mge_nfo[Math.floor(Math.random()*mge_nfo.length)]);
picts.setAttribute("id","random_pic");
	document.getElementById('R_img').appendChild(picts);
 }
}


