<!-- Begin
// Set up the image files to be used.
var theImages = new Array() // do not change this

// To add more image files, continue with the pattern below, adding to the array.
theImages[0] = 'images/tr_adiyaman.jpg'
theImages[1] = 'images/tr_ankara1.jpg'
theImages[2] = 'images/tr_antalya1.jpg'
theImages[3] = 'images/tr_aydin.jpg'
theImages[4] = 'images/tr_bitlis.jpg'
theImages[5] = 'images/tr_diyarbakir.jpg'
theImages[6] = 'images/tr_elazig.jpg'
theImages[7] = 'images/tr_eskisehir.jpg'
theImages[8] = 'images/tr_istanbul1.jpg'
theImages[9] = 'images/tr_istanbul2.jpg'
theImages[10] = 'images/tr_istanbul3.jpg'
theImages[11] = 'images/tr_istanbul4.jpg'
theImages[12] = 'images/tr_izmir1.jpg'
theImages[13] = 'images/tr_kutahya.jpg'
theImages[14] = 'images/tr_mardin.jpg'
theImages[15] = 'images/tr_trabzon.jpg'
theImages[16] = 'images/tr_van.jpg'
theImages[17] = 'images/tr_ankara2.jpg'
theImages[18] = 'images/tr_ankara3.jpg'
theImages[19] = 'images/tr_ankara4.jpg'
theImages[20] = 'images/tr_ankara5.jpg'
theImages[21] = 'images/tr_antalya2.jpg'
theImages[22] = 'images/tr_izmir2.jpg'
theImages[23] = 'images/tr_izmir3.jpg'
theImages[24] = 'images/tr_izmir4.jpg'
theImages[25] = 'images/tr_izmir5.jpg'
theImages[26] = 'images/tr_izmir6.jpg'
theImages[27] = 'images/tr_mugla1.jpg'
theImages[28] = 'images/tr_mugla2.jpg'
theImages[29] = 'images/tr_mugla3.jpg'
theImages[30] = 'images/tr_mugla4.jpg'
theImages[31] = 'images/tr_mugla5.jpg'
theImages[32] = 'images/tr_mugla6.jpg'
theImages[33] = 'images/tr_mugla7.jpg'
theImages[34] = 'images/tr_mugla8.jpg'

// do not edit anything below this line
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('<a href="'+theImages[whichImage]+'" target="_blank"><img alt="" width="150" border="0" src="'+theImages[whichImage]+'"></a>');
}
//  End -->
