function RandomizeImage()
{
var imagesarray = new Array(	"/wordpress/wp-content/themes/readinglab/images/alphabet/a.png", 
								"/wordpress/wp-content/themes/readinglab/images/alphabet/b.png", 
								"/wordpress/wp-content/themes/readinglab/images/alphabet/c.png", 
								"/wordpress/wp-content/themes/readinglab/images/alphabet/d.png", 
								"/wordpress/wp-content/themes/readinglab/images/alphabet/e.png", 
								"/wordpress/wp-content/themes/readinglab/images/alphabet/h.png", 
								"/wordpress/wp-content/themes/readinglab/images/alphabet/i.png", 
								"/wordpress/wp-content/themes/readinglab/images/alphabet/k.png", 
								"/wordpress/wp-content/themes/readinglab/images/alphabet/l.png", 
								"/wordpress/wp-content/themes/readinglab/images/alphabet/n.png", 
								"/wordpress/wp-content/themes/readinglab/images/alphabet/o.png", 
								"/wordpress/wp-content/themes/readinglab/images/alphabet/r.png", 
								"/wordpress/wp-content/themes/readinglab/images/alphabet/s.png", 
								"/wordpress/wp-content/themes/readinglab/images/alphabet/t.png", 
								"/wordpress/wp-content/themes/readinglab/images/alphabet/u.png", 
								"/wordpress/wp-content/themes/readinglab/images/alphabet/v.png", 
								"/wordpress/wp-content/themes/readinglab/images/alphabet/x.png", 
								"/wordpress/wp-content/themes/readinglab/images/alphabet/z.png")
/* 
here you indicate path to all images you want ot partake in this misdemeanor 
*/
var randomnumber = Math.round(Math.random()*(imagesarray.length - 1))
document.images.alphabet.src = imagesarray[randomnumber]
}


function RandomizeImage2()
{
var imagesarray = new Array(	"/wordpress/wp-content/themes/readinglab/images/homephotos/1.jpg", 
								"/wordpress/wp-content/themes/readinglab/images/homephotos/2.jpg", 
								"/wordpress/wp-content/themes/readinglab/images/homephotos/3.jpg", 
								"/wordpress/wp-content/themes/readinglab/images/homephotos/arletta.jpg", 
								"/wordpress/wp-content/themes/readinglab/images/homephotos/going_away_party.jpg", 
								"/wordpress/wp-content/themes/readinglab/images/homephotos/happybirthday_ipa.jpg", 
								"/wordpress/wp-content/themes/readinglab/images/homephotos/lab_attention.jpg", 
								"/wordpress/wp-content/themes/readinglab/images/homephotos/lab_group2.jpg", 
								"/wordpress/wp-content/themes/readinglab/images/homephotos/lab_group07.jpg", 
								"/wordpress/wp-content/themes/readinglab/images/homephotos/lab_ottawa2.jpg", 
								"/wordpress/wp-content/themes/readinglab/images/homephotos/lesly_vincent.jpg", 
								"/wordpress/wp-content/themes/readinglab/images/homephotos/piratebee1.jpg", 
								"/wordpress/wp-content/themes/readinglab/images/homephotos/piratebee2.jpg", 
								"/wordpress/wp-content/themes/readinglab/images/homephotos/piratebee3.jpg", 
								"/wordpress/wp-content/themes/readinglab/images/homephotos/piratebee4.jpg", 
								"/wordpress/wp-content/themes/readinglab/images/homephotos/poster-elle2.jpg", 
								"/wordpress/wp-content/themes/readinglab/images/homephotos/poster-ellie.jpg", 
								"/wordpress/wp-content/themes/readinglab/images/homephotos/poster-ilana.jpg", 
								"/wordpress/wp-content/themes/readinglab/images/homephotos/poster-jody.jpg", 
								"/wordpress/wp-content/themes/readinglab/images/homephotos/poster-marina.jpg", 
								"/wordpress/wp-content/themes/readinglab/images/homephotos/students_bilingualismconf.jpg", 
								"/wordpress/wp-content/themes/readinglab/images/homephotos/4.jpg",
								"/wordpress/wp-content/themes/readinglab/images/homephotos/new/amanda, erin, christie, angela.jpg",
								"/wordpress/wp-content/themes/readinglab/images/homephotos/new/amanda, lisa, and katie.jpg",
								"/wordpress/wp-content/themes/readinglab/images/homephotos/new/arletta.jpg",
								"/wordpress/wp-content/themes/readinglab/images/homephotos/new/bear attacks.jpg",
								"/wordpress/wp-content/themes/readinglab/images/homephotos/new/dana_lesly.jpg",
								"/wordpress/wp-content/themes/readinglab/images/homephotos/new/dana, sara, amanda.jpg",
								"/wordpress/wp-content/themes/readinglab/images/homephotos/new/eve, ellie, lesly.jpg",
								"/wordpress/wp-content/themes/readinglab/images/homephotos/new/IMG_0465.jpg",
								"/wordpress/wp-content/themes/readinglab/images/homephotos/new/lab ladies.jpg",
								"/wordpress/wp-content/themes/readinglab/images/homephotos/new/laura, lindsay, dana, ilana.jpg",
								"/wordpress/wp-content/themes/readinglab/images/homephotos/new/lesly & ilana.jpg",
								"/wordpress/wp-content/themes/readinglab/images/homephotos/new/lesly convocation stage.jpg",
								"/wordpress/wp-content/themes/readinglab/images/homephotos/new/lesly mountains.jpg",
								"/wordpress/wp-content/themes/readinglab/images/homephotos/new/lesly_vincent.jpg",
								"/wordpress/wp-content/themes/readinglab/images/homephotos/new/lindsay & ellie check out them mountains.jpg",
								"/wordpress/wp-content/themes/readinglab/images/homephotos/new/lindsay and madison.jpg",
								"/wordpress/wp-content/themes/readinglab/images/homephotos/new/lisa and eve.jpg",
								"/wordpress/wp-content/themes/readinglab/images/homephotos/new/rob, chantal, gareth.jpg",
								"/wordpress/wp-content/themes/readinglab/images/homephotos/new/SSSR 2006 @ Vancouver 027.jpg"
								)
/* 
here you indicate path to all images you want ot partake in this misdemeanor 
*/
var randomnumber = Math.round(Math.random()*(imagesarray.length - 1))
document.images.homephoto.src = imagesarray[randomnumber]
}