frlton = new Image();
frlton.src = "images/frlt_on.gif";
frltoff = new Image();
frltoff.src = "images/frlt_off.gif";

sbcon = new Image();
sbcon.src = "images/sbc_on.gif";
sbcoff = new Image();
sbcoff.src = "images/sbc_off.gif";

tncon = new Image();
tncon.src = "images/tnc_on.gif";
tncoff = new Image();
tncoff.src = "images/tnc_off.gif";

tdlton = new Image();
tdlton.src = "images/tdlt_on.gif";
tdltoff = new Image();
tdltoff.src = "images/tdlt_off.gif";

tfplon = new Image();
tfplon.src = "images/tfpl_on.gif";
tfploff = new Image();
tfploff.src = "images/tfpl_off.gif";

nson = new Image();
nson.src = "images/ns_on.gif";
nsoff = new Image();
nsoff.src = "images/ns_off.gif";

abouton = new Image();
abouton.src = "images/about_on.gif";
aboutoff = new Image();
aboutoff.src = "images/about_off.gif";

projectson = new Image();
projectson.src = "images/projects_on.gif";
projectsoff = new Image();
projectsoff.src = "images/projects_off.gif";

supporton = new Image();
supporton.src = "images/support_on.gif";
supportoff = new Image();
supportoff.src = "images/support_off.gif";

newson = new Image();
newson.src = "images/news_on.gif";
newsoff = new Image();
newsoff.src = "images/news_off.gif";

eventson = new Image();
eventson.src = "images/events_on.gif";
eventsoff = new Image();
eventsoff.src = "images/events_off.gif";

donateon = new Image();
donateon.src = "images/donate_on.gif";
donateoff = new Image();
donateoff.src = "images/donate_off.gif";

// On function
function imgAct(imgName) {
    document[imgName].src = eval(imgName + "on.src");
}

// Off function
function imgInact(imgName) {
    document[imgName].src = eval(imgName + "off.src");
}

function submitform()
{
	document.forms["signup"].submit();
}


