var theImages = new Array()
theImages[0] = 'events/Eve_of_Nations2011.jpg';
theImages[1] = 'events/Fashion_show.jpg';
theImages[2] = 'events/International_Dance_Competition.jpg';
theImages[3] = 'events/Nepali_New_year.jpg';
theImages[4] = 'events/Nepali_Night _2006_group.jpg';
theImages[5] = 'events/Homecoming.jpg';
theImages[6] = 'events/Eve_of_Nationss2011.jpg';
theImages[7] = 'events/moment.jpg';
theImages[8] = 'events/Getting_Ready.jpg';
theImages[9] = 'events/Nepali_Night_2006.jpg';

var caption = new Array()
caption[0] = 'Particaipation at Eve of Nations 2011';
caption[1] = 'Fashion show at Eve of Nation 2007';
caption[2] = 'NSA Participation on International Dance Competition 2008';
caption[3] = 'Nepali new year';
caption[4] = 'Getting Ready Nepali Night 2006';
caption[5] = 'NSA Participation in Homecoming 2007';
caption[6] = 'NSA Participants for Eve of Nation 2011';
caption[7] = 'Student and their families enjoying Dashain festival';
caption[8] = 'Getting Ready to Serve, Food Festival 2008';
caption[9] = 'Nepali Night 2006';

var j = 0
var p = theImages.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages[i]
}
var whichImage = Math.floor(Math.random()*(p-1));

function showImage(){
	if(theImages[whichImage] == undefined) {
	    document.write('<center><img src="'+theImages[0]+'" border=1 width=500 height=335 alt="Nepal Student Association, OU, OK" /><br/>');
	    document.write('Particaipation at Eve of Nations 2007</center>');
	} else {
 	    document.write('<center><img src="'+theImages[whichImage]+'" border=1 width=500 height=335 alt="Nepal Student Association, OU, OK" /><br/>');
 	    document.write(caption[whichImage] + '</center>');
	
	}
	
}





