// Random Image Script for photos
function random_content(){
var mycontent=new Array()

mycontent[1]='<img src="images/1.jpg" alt="01" title="Photograph of Young Girl" />'
mycontent[2]='<img src="images/2.jpg" alt="02" title="Baby Photography" />'
mycontent[3]='<img src="images/3.jpg" alt="03" title="Photo of Infant" />'
mycontent[4]='<img src="images/4.jpg" alt="04" title="Photo of Boy Smiling" />'
mycontent[5]='<img src="images/5.jpg" alt="05" title="Photograph of young girl looking over her shoulder" />'

var ry=Math.floor(Math.random()*mycontent.length)
if (ry==0)
ry=1
document.write(mycontent[ry])
}
random_content()