﻿<!--
// ==============================================
// Copyright 2003 by jsCode.com
// Source: jsCode.com
// Author: etLux
// Set up the image files to be used.
var theImages = new Array() // do not change this
theImages[0] = 'To-Casuality-s.jpg'
theImages[1] = 'Auditorium-s.jpg'
theImages[2] = 'biochem-lab-s.jpg'
theImages[3] = 'Cancer-Centre-s.jpg'
theImages[4] = 'Front-of-forensic-dept-s.jpg'
theImages[5] = 'Histology-lab-s.jpg'
theImages[6] = 'institute-of-child-health-s.jpg'
theImages[7] = 'Medical-block-s.jpg'
theImages[8] = 'New-college-wing-s.jpg'
theImages[9] = 'New-library-s.jpg'
theImages[10] = 'New-PG-Hostel-s.jpg'
theImages[11] = 'Old-Library-s.jpg'
theImages[12] = 'old-pharmacy-college-s.jpg'
theImages[13] = 'The-MH-s.jpg'
//added by JM
var bigImages = new Array()
bigImages[0] = 'To-Casuality.jpg'
bigImages[1] = 'Auditorium.jpg'
bigImages[2] = 'biochem-lab.jpg'
bigImages[3] = 'Cancer-Centre.jpg'
bigImages[4] = 'Front-of-forensic-dept.jpg'
bigImages[5] = 'Histology-lab.jpg'
bigImages[6] = 'institute-of-child-health.jpg'
bigImages[7] = 'Medical-block.jpg'
bigImages[8] = 'New-college-wing.jpg'
bigImages[9] = 'New-library.jpg'
bigImages[10] = 'New-PG-Hostel.jpg'
bigImages[11] = 'Old-Library.jpg'
bigImages[12] = 'old-pharmacy-college.jpg'
bigImages[13] = 'The-MH.jpg'
// ======================================
// do not change 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="'+"http://www.KMC1973.com/MCK-images/"+bigImages[whichImage]+'"><img src="'+"http://www.KMC1973.com/MCK-images/"+theImages[whichImage]+'"></a>');

}

//-->