<!--preload images-->


function preloadImages()
{
homeeDown = new Image; homeeDown.src  = "images/link_home_down.gif";
homeeOut = new Image; homeeOut.src = "images/link_home.gif";

newsDown = new Image; newsDown.src  = "images/link_news_down.gif";
newsOut = new Image; newsOut.src = "images/link_news.gif";

teamDown = new Image; teamDown.src  = "images/link_team_down.gif";
teamOut = new Image; teamOut.src = "images/link_team.gif";

resultDown = new Image; resultDown.src  = "images/link_result_down.gif";
resultOut = new Image; resultOut.src = "images/link_result.gif";

iclubDown = new Image; iclubDown.src  = "images/link_iclub_down.gif";
iclubOut = new Image; iclubOut.src = "images/link_iclub.gif";

sleagueDown = new Image; sleagueDown.src  = "images/link_sleague_down.gif";
sleagueOut = new Image; sleagueOut.src = "images/link_sleague.gif";

eventDown = new Image; eventDown.src  = "images/link_event_down.gif";
eventOut = new Image; eventOut.src = "images/link_event.gif";

clubDown = new Image; clubDown.src  = "images/link_club_down.gif";
clubOut = new Image; clubOut.src = "images/link_club.gif";

contactDown = new Image; contactDown.src  = "images/link_contact_down.gif";
contactOut = new Image; contactOut.src = "images/link_contact.gif";
}

function swapImages(choice, id) 
{
	if (choice=="homeeDown") { id.src = homeeDown.src };
	if (choice=="homeeOut") { id.src = homeeOut.src };

	if (choice=="newsDown") { id.src = newsDown.src };
	if (choice=="newsOut") { id.src = newsOut.src };

	if (choice=="teamDown") { id.src = teamDown.src };
	if (choice=="teamOut") { id.src = teamOut.src };
	
	if (choice=="resultDown") { id.src = resultDown.src };
	if (choice=="resultOut") { id.src = resultOut.src };

	if (choice=="iclubDown") { id.src = iclubDown.src };
	if (choice=="iclubOut") { id.src = iclubOut.src };

	if (choice=="sleagueDown") { id.src = sleagueDown.src };
	if (choice=="sleagueOut") { id.src = sleagueOut.src };

	if (choice=="eventDown") { id.src = eventDown.src };
	if (choice=="eventOut") { id.src = eventOut.src };

	if (choice=="clubDown") { id.src = clubDown.src };
	if (choice=="clubOut") { id.src = clubOut.src };

	if (choice=="contactDown") { id.src = contactDown.src };
	if (choice=="contactOut") { id.src = contactOut.src };
}



<!-- function to show/hide dropdown menus on mouseover-->

function showmenu(name)
{
document.all(name).style.visibility="visible"
}

function hidemenu(name)
{
document.all(name).style.visibility="hidden"
}

function changeColor(id,color)
{
document.getElementById(id).style.background=color
}


function changeText(id, text)
{
document.getElementById(id).innerHTML=text
}


function insRow(id,team1,D_L,team2,score)
{
var x=document.getElementById(id).insertRow(1)
var y=x.insertCell(0)
var z=x.insertCell(1)
var u=x.insertCell(2)
var w=x.insertCell(3)
y.innerHTML=team1
z.innerHTML=D_L
u.innerHTML=team2
w.innerHTML=score

var g=document.getElementById(id).rows[1].cells

for (i=0; i <= 3;  i++)
{
g[i].align="center"
}

}