

document.menustate 				= new Array;

function initnavi() {
	for (var hashkey in document.menustate) {
		//alert('key is: ' + hashkey + ', value is: ' + document.menustate[hashkey]);
		document.getElementById(hashkey).src = '../img/subnavi/' + document.menustate[hashkey] + '/' + hashkey + '.jpg';
	}
}

function setsubnavi(itemid) {
	document.getElementById(itemid).src = '../img/subnavi/high/' + itemid + '.jpg';
}

function resetsubnavi(itemid){

	document.getElementById(itemid).src = '../img/subnavi/' + document.menustate[itemid] + '/' + itemid + '.jpg';

}



// build links at http://jumk.de/nospam/stopspam.html
function UnCryptMailto( s ){
    var n = 0;
    var r = "";
    for( var i = 0; i < s.length; i++){
        n = s.charCodeAt( i )
        if( n >= 8364 ){ n = 128; }
        r += String.fromCharCode( n - 1 );
    }
    return r;
}

function linkTo_UnCryptMailto( s ){
    location.href=UnCryptMailto( s );
}

