NumberOfStudentToRotate = 4;

// Specify the first and last part of the image tag.

FirstPart = '<img src="Logo';
LastPart = '.jpg" width="250">';

Stud1 = '<font color = "#000000"><small>"I have been studying in ICOT for last one year and found the college extremely professional and faculty members are approachable. They are always willing to assist wherever possible. I would have no hesitation whatsoever in recommending ICOT as an institution in which to carry out further studies."<br/><br/>	<center>Mohsein Mohamad (Malaysia) </center> <center>Student of Accounting and Finance</center></small></font>';
Stud2 = '<font color = "#000000"><small>"ICOT is one of the best Schools in Ireland. This college has qualified teachers; its directors are also very helpful. They provide all the study materials and other required supports that students may need during their studies."<br/><br/>	<center>Ralph Gerald Jinazali (Malawi) </center> <center>Student of Accounting and Finance</center></small></font>';
Stud3 = '<font color = "#000000"><small>"I am a Nigerian currently studying IT at ICOT. They have excellent facilities, highly qualified lecturers and very conducive environment for learning.."<br/><br/>	<center>Naseer Muhammed (Nigeria) </center> <center>Student of Information and Communication Tech.</center></small></font>';
Stud4 = '<font color = "#000000"><small>"Living in Ireland was the best experience of my life so far. Environment is very warm and welcoming in Dublin. I studied business management in ICOT and enjoyed my time very much. I met lot of new people and found some good friends here."<br/><br/><center>Gulshirin Ahmedova (Turkmenistan)</center> <center>Student of Business Management</center></small></font>';

Image1 = '<img src="images/stud1.jpg" height="100" alt="Angry face" align="right" vspace="5" hspace="5" />'
Image2 = '<img src="images/stud2.jpg" height="100" alt="Angry face" align="right" vspace="5" hspace="5" />'
Image3 = '<img src="images/stud3.jpg" height="100" alt="Angry face" align="right" vspace="5" hspace="5" />'
Image4 = '<img src="images/stud4.jpg" height="100" alt="Angry face" align="right" vspace="5" hspace="5" />'



var r = Math.ceil(Math.random() * NumberOfStudentToRotate);


function printStudent()
{
	//var r = Math.ceil(Math.random() * NumberOfStudentToRotate);
	//document.write(FirstPart + r + LastPart);
	if(r==1)
	{
		document.write(Stud1);
	}
	else if(r==2)
	{
		document.write(Stud2);
	}
	else if(r==3)
	{
		document.write(Stud3);
	}
	else if(r==4)
	{
		document.write(Stud4);
	}
}

function printImage()
{
	if(r==1)
	{
		document.write(Image1);
	}
	else if(r==2)
	{
		document.write(Image2);
	}
	else if(r==3)
	{
		document.write(Image3);
	}
	else if(r==4)
	{
		document.write(Image4);
	}
}

