
company_on = new Image(); company_off = new Image();
company_off.src = "images/companyoff_82x20.gif";
company_on.src = "images/companyon_82x20.gif";

services_on = new Image(); services_off = new Image();
services_off.src = "images/servicesoff_82x20.gif";
services_on.src = "images/serviceson_82x20.gif";

support_on = new Image(); support_off = new Image();
support_off.src = "images/supportoff_82x20.gif";
support_on.src = "images/supporton_82x20.gif";

faq_on = new Image(); faq_off = new Image();
faq_off.src = "images/faqoff_82x20.gif";
faq_on.src = "images/faqon_82x20.gif";

register_on = new Image(); register_off = new Image();
register_off.src = "images/registeroff_82x20.gif";
register_on.src = "images/registeron_82x20.gif";

contact_on = new Image(); contact_off = new Image();
contact_off.src = "images/contactoff_82x20.gif";
contact_on.src = "images/contacton_82x20.gif";



var loaded = 0;

function flip(name,over) {
	if (document.images) {
		image = (over == 1) ? eval(name+"_on.src") : eval(name+"_off.src");
		document[name].src = image;
	}
}

function finishedLoading() {
	loaded = 1;
}

