﻿function toggledisplay(control) {
	if (document.getElementById(control).style.display == "none") {
		document.getElementById(control).style.display = "";
	}
	else {
		document.getElementById(control).style.display = "none";
	}
}


function loadnavbarimages() {
var pathArray = new Array(2);
var imageArray = new Array(2);
pathArray[0] = "http://res.ultimahosts.eu/h/1/m/menulefthover.jpg";
pathArray[1] = "http://res.ultimahosts.eu/h/1/m/menurighthover.jpg";
if (document.images)
{
for (i=0; i < 2; i++)
{
imageArray[i] = new Image();
imageArray[i].src = pathArray[i];
}
}
}

function loadsecurenavbarimages() {
var pathArray = new Array(2);
var imageArray = new Array(2);
pathArray[0] = "https://res.ultimahosts.eu/h/1/m/menulefthover.jpg";
pathArray[1] = "https://res.ultimahosts.eu/h/1/m/menurighthover.jpg";
if (document.images)
{
for (i=0; i < 2; i++)
{
imageArray[i] = new Image();
imageArray[i].src = pathArray[i];
}
}
}