
<!--start Random Foto
var fotosayi = 4;
var  foto = new Array(fotosayi);
var  alt = new Array(fotosayi);

 
alt[0]="Mezuniyet";alt[1]="Library";alt[2]="Faculty of Law";alt[3]="Basketball";
foto[0] = "image/orta2.jpg"; foto[1] = "image/orta3.jpg"; foto[2] = "image/orta4.jpg"; foto[3] = "image/orta5.jpg"; 

function Randomfoto() {
	if (Math.random) {
			var choice = Math.round(Math.random() * (fotosayi-1)); }
				else {		var now = new Date();
						var choice = (now.getTime() / 1000) % fotosayi; }
	document.write('<IMG SRC="'+ foto[choice]+'" ALT="'+alt[choice]+'" width="260" height="310" BORDER=0 >');}
Randomfoto();
//-->
