function over(imgStub,lang) 
{
	document.images['nav' + imgStub].src= "/imgs/nav/nav" + lang + "_" + imgStub + "_on.gif";
}
function out(imgStub,lang)
{
	document.images['nav' + imgStub].src= "/imgs/nav/nav" + lang + "_" + imgStub + "_off.gif";
}
function swapImageOn(theImg)
{
	document.images[theImg].src = document.images[theImg].src.replace("_off","_on");
}
function swapImageOff(theImg)
{
	document.images[theImg].src = document.images[theImg].src.replace("_on","_off");
}
function changeBGImage()
{
	var d = new Date();
	var s = d.getSeconds();
	var t = Math.round(s/15);
	var theImg = "/imgs/homeBG1.gif";
	if (t==0) 
		theImg = "/imgs/homeBG1.gif";
	if (t==1) 
		theImg = "/imgs/homeBG2.gif";
	if (t==2) 
		theImg = "/imgs/homeBG3.gif";
	if (t==3) 
		theImg = "/imgs/homeBG4.gif";
	if (t==4) 
		theImg = "/imgs/homeBG5.gif";
	document.getElementById("container").style.backgroundImage = "url(" + theImg + ")";
}
function openCC()
{
	var remote = window.open ("http://ui.constantcontact.com/d.jsp?m=1011336098061&p=oi","ccWindow","width=742,height=500,scrollbars=yes");
	remote.focus();
}


