var bName = navigator.appName;
var bVer = parseInt(navigator.appVersion);
var NS4 = (bName == "Netscape" && bVer >= 4);
var IE4 = (bName == "Microsoft Internet Explorer" && bVer >= 4);

//Skift farve ved links
function mOvr(src) {
	var firstChild
	if (IE4)
		src.style.cursor = 'hand';
	else if (NS4)
		src.style.cursor = 'pointer';
	src.bgColor = '#5870A2';
	src.firstChild.style.color = '#FFFFFF';
}

function mOut(src) {
	src.style.cursor = 'default';
	src.bgColor = '#7498cc';
	src.firstChild.style.color = '#000000';
}

function mOvr1(src) {
	var firstChild
	if (IE4)
		src.style.cursor = 'hand';
	else if (NS4)
		src.style.cursor = 'pointer';
	src.bgColor = '#5870A2';
	src.firstChild.style.color = '#FFFFFF';
}

function mOut1(src) {
	src.style.cursor = 'default';
	src.bgColor = '#7498cc';
	src.firstChild.style.color = '#000000';
}

