// JavaScript Document
//////////////////////////////////////Start: Global Vars/////////////////////////////////////////
var imgNum=7;
//////////////////////////////////////End: Global Vars///////////////////////////////////////////

function loadPic()
{
	var rndNum=Math.floor(Math.random()*imgNum)+1;//1~imgNum
	document.getElementById("indexPic").innerHTML="<img src=\"images/index/"+rndNum+".jpg\"></img>";
}

function onButtonHover(e1,e2,e3)
{
	document.getElementById(e1).style.background="#E58203";
	document.getElementById(e2).style.background="#E58203";
	document.getElementById(e3).style.background="#E58203";
}

function onButtonOut(e1,e2,e3)
{
	document.getElementById(e1).style.background="#AB2023";
	document.getElementById(e2).style.background="#AB2023";
	document.getElementById(e3).style.background="#AB2023";
}