// Blau mit Rand

function high1(LinkObject)	{
	LinkObject.style.background='rgb(140,170,222)';
	LinkObject.style.border='solid';
	LinkObject.style.borderWidth='1px';
	LinkObject.style.borderColor='rgb(49,106,197)';
}
// OUT - menueblau ohne Rand
function low1(LinkObject)	{
	LinkObject.style.background='rgb(228,236,248)';
	// LinkObject.style.border='solid';
	// LinkObject.style.borderWidth='1px';
	LinkObject.style.borderColor='rgb(255,255,255)';
}

// Blau ohne Rand 140,170,222
function high2(LinkObject)	{
	LinkObject.style.background='rgb(174,196,232)';
	LinkObject.style.borderColor='rgb(240,244,251)';
}

function low2(LinkObject)	{
	LinkObject.style.background='rgb(255,255,255)';
	LinkObject.style.borderColor='rgb(255,255,255)';
}

// OUT - hellblau ohne Rand
function low3(LinkObject)	{
	LinkObject.style.background='rgb(240,244,251)';
	// LinkObject.style.border='solid';
	// LinkObject.style.borderWidth='1px';
	LinkObject.style.borderColor='rgb(240,244,251)';
}

// OUT weiß (mit) Rand
function low4(LinkObject)	{
	LinkObject.style.background='rgb(255,253,254)';
	LinkObject.style.border='outset';
	LinkObject.style.borderWidth='1px';
	LinkObject.style.borderColor='rgb(174,196,232)';
	
}	

