var defaultSelection = "aboutUs";
var currentSelection;

function showChildMenu(parentSelected)
{
  if(currentSelection == null)
  {
     currentSelection = document.getElementById(defaultSelection)
  }
                
    var iframe = document.getElementById("iFrameContent");

     if(parentSelected == "subpages/Forum")
     {
	    iframe.setAttribute('src','http://ebbwvalerunningclub.co.uk/tinc?key=Mu7unwjl&start=-1&reverse=1'); 
     }else
     {
	    iframe.setAttribute('src',parentSelected+'.htm'); 
     }

}       

function imagePreloader()
{

    var i = 0;
    imageObj = new Image();
        
    images = new Array();
    
    //abetrtillery 10k
    images[0] = "../resources/Photos/Abertillery10K2008/small/after1.jpg";
    images[1] = "../resources/Photos/Abertillery10K2008/small/after2.jpg";
    images[2] = "../resources/Photos/Abertillery10K2008/small/after3.jpg";
    images[3] = "../resources/Photos/Abertillery10K2008/small/ashley.jpg";
    images[4] = "../resources/Photos/Abertillery10K2008/small/group.jpg";
    images[5] = "../resources/Photos/Abertillery10K2008/small/andrew_m.jpg";
    images[6] = "../resources/Photos/Abertillery10K2008/small/dai_and_ray.jpg";
    images[7] = "../resources/Photos/Abertillery10K2008/small/danny.jpg";
    images[8] = "../resources/Photos/Abertillery10K2008/small/gary.jpg";
    images[9] = "../resources/Photos/Abertillery10K2008/small/group2.jpg";
    images[10] = "../resources/Photos/Abertillery10K2008/small/ian_medal.jpg";
    images[11] = "../resources/Photos/Abertillery10K2008/small/lesley_and_rachael.jpg";
    images[12] = "../resources/Photos/Abertillery10K2008/small/louise.jpg";
    images[13] = "../resources/Photos/Abertillery10K2008/small/louisemedal.jpg";
    images[14] = "../resources/Photos/Abertillery10K2008/small/mike.jpg";
    images[15] = "../resources/Photos/Abertillery10K2008/small/richard.jpg";
    images[16] = "../resources/Photos/Abertillery10K2008/small/robert.jpg";
    images[17] = "../resources/Photos/Abertillery10K2008/small/steve.jpg";
    images[18] = "../resources/Photos/Abertillery10K2008/small/terry.jpg";
    
    images[19] = "../resources/Photos/Abertillery10K2008/large/after1.jpg";
    images[20] = "../resources/Photos/Abertillery10K2008/large/after2.jpg";
    images[21] = "../resources/Photos/Abertillery10K2008/large/after3.jpg";
    images[22] = "../resources/Photos/Abertillery10K2008/large/ashley.jpg";
    images[23] = "../resources/Photos/Abertillery10K2008/large/group.jpg";
    images[24] = "../resources/Photos/Abertillery10K2008/large/andrew_m.jpg";
    images[25] = "../resources/Photos/Abertillery10K2008/large/dai_and_ray.jpg";
    images[26] = "../resources/Photos/Abertillery10K2008/large/danny.jpg";
    images[27] = "../resources/Photos/Abertillery10K2008/large/gary.jpg";
    images[28] = "../resources/Photos/Abertillery10K2008/large/group2.jpg";
    images[29] = "../resources/Photos/Abertillery10K2008/large/ian_medal.jpg";
    images[30] = "../resources/Photos/Abertillery10K2008/large/lesley_and_rachael.jpg";
    images[31] = "../resources/Photos/Abertillery10K2008/large/louise.jpg";
    images[32] = "../resources/Photos/Abertillery10K2008/large/louisemedal.jpg";
    images[33] = "../resources/Photos/Abertillery10K2008/large/mike.jpg";
    images[34] = "../resources/Photos/Abertillery10K2008/large/richard.jpg";
    images[35] = "../resources/Photos/Abertillery10K2008/large/robert.jpg";
    images[36] = "../resources/Photos/Abertillery10K2008/large/steve.jpg";
    images[36] = "../resources/Photos/Abertillery10K2008/large/terry.jpg";
    
    //London 2012
    
    images[36] = "../resources/Photos/Blaenau Gwent 2012 handover/Large/Before the off.jpg";
    images[37] = "../resources/Photos/Blaenau Gwent 2012 handover/Large/They off.jpg";
    images[38] = "../resources/Photos/Blaenau Gwent 2012 handover/Large/They off again.jpg";
    images[39] = "../resources/Photos/Blaenau Gwent 2012 handover/Large/What a steep hill.jpg";
    images[40] = "../resources/Photos/Blaenau Gwent 2012 handover/Large/Whoose idea was this.jpg";
    images[41] = "../resources/Photos/Blaenau Gwent 2012 handover/Large/Half way and wer'e flagging.jpg";
    images[42] = "../resources/Photos/Blaenau Gwent 2012 handover/Large/Slow down Cory.jpg";
    images[43] = "../resources/Photos/Blaenau Gwent 2012 handover/Large/hand it over.jpg";
    
    images[45] = "../resources/Photos/Blaenau Gwent 2012 handover/Small/Before the off.jpg";
    images[46] = "../resources/Photos/Blaenau Gwent 2012 handover/Small/They off.jpg";
    images[47] = "../resources/Photos/Blaenau Gwent 2012 handover/Small/They off again.jpg";
    images[48] = "../resources/Photos/Blaenau Gwent 2012 handover/Small/What a steep hill.jpg";
    images[49] = "../resources/Photos/Blaenau Gwent 2012 handover/Small/Whoose idea was this.jpg";
    images[50] = "../resources/Photos/Blaenau Gwent 2012 handover/Small/Half way and wer'e flagging.jpg";
    images[51] = "../resources/Photos/Blaenau Gwent 2012 handover/Small/Slow down Cory.jpg";
    images[52] = "../resources/Photos/Blaenau Gwent 2012 handover/Small/hand it over.jpg";
    
    
    

     
    for (i;i < images.length-1; i++)
    {
        imageObj.src = images[i];
    }
}