// Footer Preloads

flink0_off = new Image(98,23);
flink0_off.src = "../images_frame/footer_home_off.gif";
flink0_on = new Image(98,23);
flink0_on.src = "../images_frame/footer_home_on.gif";

flink1_off = new Image(116,23);
flink1_off.src = "../images_frame/footer_about_off.gif";
flink1_on = new Image(116,23);
flink1_on.src = "../images_frame/footer_about_on.gif";

flink2_off = new Image(110,23);
flink2_off.src = "../images_frame/footer_related_off.gif";
flink2_on = new Image(110,23);
flink2_on.src = "../images_frame/footer_related_on.gif";

flink3_off = new Image(141,23);
flink3_off.src = "../images_frame/footer_sponsors_off.gif";
flink3_on = new Image(141,23);
flink3_on.src = "../images_frame/footer_sponsors_on.gif";

flink5_off = new Image(132,23);
flink5_off.src = "../images_frame/footer_contact_off.gif";
flink5_on = new Image(132,23);
flink5_on.src = "../images_frame/footer_contact_on.gif";

function frollOn(theLink) {
	theImage = document.images["FLINK" + theLink];
	theNewSrc = eval("flink" + theLink + "_on");
	theImage.src = theNewSrc.src;
}

function frollOff(theLink) {
	theImage = document.images["FLINK" + theLink];
	theNewSrc = eval("flink" + theLink + "_off");
	theImage.src = theNewSrc.src;
}