// JavaScript Document

univLBlue='#8698C0'
univLGrey='#D7D7D7'
univBlue='#0D3182'
univGrey='#888C8F'
textColor='white'

function setBackgroundColor(id, bgcolor)
{
	document.getElementById(id).style.backgroundColor = bgcolor;
}

//the main module gets executed when the page is loaded
function ScriptMain()
{
	; 
}
function getRandomImageName(dir)
{
	var img_name = new Array();
	img_name[0]= dir.concat("/images/photo1.jpg");
	img_name[1]= dir.concat("/images/photo2.jpg");
	img_name[2]= dir.concat("/images/photo3.jpg");
	img_name[3]= dir.concat("/images/photo4.jpg");
	img_name[4]= dir.concat("/images/photo5.jpg");
	var randindex=Math.floor(Math.random()*img_name.length);
	return (img_name[randindex]);
}
function setRandomImage()
{
	document.rndPhoto.src = getRandomImageName("..");
}
function setRandomImage2()
{
	document.rndPhoto.src = getRandomImageName(".");
}
function f_mouseover()
{
	document.getElementById('contact_faculty').style.color = univGrey;
	window.status= "now";
}