var images = new Array() 
var captions = new Array();

images[0] = '01.jpg'
captions[0] = 'Srinagar, Kashmir, India, 1996'
images[1] = '03.jpg'
captions[1] = 'Pahalgam, Kashmir, India, 1998'
images[2] = '08.jpg'
captions[2] = 'A Kashmiri man paddles to a floating market amidst freezing temperatures before sunrise on the Dal lake in Srinagar, the summer capital of India-administered Kashmir.'
images[3] = '09.jpg'
captions[3] = 'Indian Border Security Force soldiers patrol the picturesque Dal lake in Srinagar, the summer capital of India-administered Kashmir, February 19, 2002.'
images[4] = '10.jpg'
captions[4] = 'Indian Border Security Force soldiers conduct a cordon and search operation where they enter homes and search the are of militants in suburban Srinagar, the summer capital of India-administered Kashmir, February 15, 2002.'
images[5] = '11.jpg'
captions[5] = 'A boy sells toys on a bridge in central Srinagar, February 13, 2002, in the India-administered state of Kashmir.'
images[6] = '12.jpg'
captions[6] = 'A Kashmiri woman-child waits outside in a cordoned area along with hundreds of other villagers, who were evacuated around 4AM on March 28, 2002, before a gun battle between a militant and Indian security forces broke out in the Budgam district, west of Srinagar, the summer capital of Jammu and Kashmir.'
images[7] = '13.jpg'
captions[7] = 'A muslim Kashmiri woman sits inside a shop with her children, where traditional Islamic veils are made, March 26, 2002, in Srinagar, the summer capital of India-administered Kashmir.'
images[8] = '14.jpg'
captions[8] = 'A woman dressed in a burqua begs for money in Srinagar, the summer capital of the state of Jammu and Kashmir.'
images[9] = '15.jpg'
captions[9] = 'Kashmiri men pray inside the Jama Masjid mosque during Ramadan in Srinagar, the summer capital of the state of Kashmir in India.'
images[10] = '16.jpg'
captions[10] = 'Muslims gather inside the Jama Masjid mosque for the first Friday afternoon prayers of Ramadan in Srinagar, the summer capital of Kashmir in India, November 23, 2001.'
images[11] = '17.jpg'
captions[11] = 'A Kashmiri woman prays inside the Jama Masjid mosque during afternoon prayers in Srinagar, the summer capital of the India-administered state of Jammu and Kashmir, May 24, 2002.'
images[12] = '18.jpg'
captions[12] = 'A Kashmiri woman in a burqua frisks women before they are allowed to enter and pray inside the Jama Masjid mosque in Srinagar, the summer capital of the India-administered state of Jammu and Kashmir, May 24, 2002.'
images[13] = '19.jpg'
captions[13] = 'Kashmiri Muslims look up at what is believed to be a relic of prophet Muhammed\'s hair at the Hazratbal shrine in Srinagar, the summer capital of the India-administered state of Jammu and Kashmir, May 25, 2002.'

var l = images.length;
var buffer = new Array()

for (i = 0; i < l; i++){
	buffer[i] = new Image()
	buffer.src = images[i]
}

var choice = Math.round(Math.random()*(l-1));

function display(){
	document.write('<img border="0" src="images/pics/'+images[choice]+'" width="479" height="318" alt="'+captions[choice]+'">');
}

//Copyright © 2003 Yavor Georgiev. All rights reserved. 

