/* ---------------------------------- */
/* Generate Random Thirunamam Image	  */
/* ---------------------------------- */

var theImages = new Array();

theImages[0]  = '/iweb/tnamam/tnama00.jpg'
theImages[1]  = '/iweb/tnamam/tnama01.jpg'
theImages[2]  = '/iweb/tnamam/tnama02.jpg'
theImages[3]  = '/iweb/tnamam/tnama03.jpg'
theImages[4]  = '/iweb/tnamam/tnama04.jpg'
theImages[5]  = '/iweb/tnamam/tnama05.jpg'
theImages[6]  = '/iweb/tnamam/tnama06.jpg'
theImages[7]  = '/iweb/tnamam/tnama07.jpg'
theImages[8]  = '/iweb/tnamam/tnama08.jpg'
theImages[9]  = '/iweb/tnamam/tnama09.jpg'
theImages[10] = '/iweb/tnamam/tnama10.jpg'
theImages[11] = '/iweb/tnamam/tnama11.jpg'
theImages[12] = '/iweb/tnamam/tnama12.jpg'
theImages[13] = '/iweb/tnamam/tnama13.jpg'

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.round(Math.random()*(p-1));

function showImage(){
	document.write('<img src="'+theImages[whichImage]+'" alt="Sri:"  height="75" width="280">');
}
