// JavaScript Document

function pressChange(btn) 
{
btn.src="images/pressRm_Over.gif";
document.getElementById("PressRoom")

btn.onmouseout=function()
{
	btn.src="images/pressRm_Up.gif"
}
}

function HomeChange(btn) 
{
btn.src="images/home_over.gif"
document.getElementById("home")

btn.onmouseout=function()
{
	btn.src="images/home.gif"
}
}

function cacChange(btn) 
{
btn.src="images/cacBtn_over.gif";
document.getElementById("CAC")

btn.onmouseout=function()
{
	btn.src="images/cacBtn.gif"
}
}

function casaChange(btn) 
{
btn.src="images/casaBtn_over.gif";
document.getElementById("casa")

btn.onmouseout=function()
{
	btn.src="images/casaBtn.gif"
}
}

function otherChange(btn) 
{
btn.src="images/otherProgBtn_over.gif";
document.getElementById("other")

btn.onmouseout=function()
{
	btn.src="images/otherProgBtn.gif"
}
}

function contactChange(btn) 
{
btn.src="images/contactBtn_over.gif";
document.getElementById("contact")

btn.onmouseout=function()
{
	btn.src="images/contactBtn.gif"
}
}
