
/* --- --------------------------------------------- --- */
/* ---                                               --- */
/* --- Project: ambrosi                              --- */
/* --- Module:  javascript routines                  --- */
/* ---                                               --- */
/* --- Patrick Sibenaler www.sibenaler.com           --- */
/* --- Mar 2010                                      --- */
/* ---                                               --- */
/* --- V 3.0                                         --- */
/* ---                                               --- */
/* --- Description: javascript frontend              --- */
/* ---                                               --- */
/* --- --------------------------------------------- --- */


// build links at http://jumk.de/nospam/stopspam.html
//use as: <a href="javascript:linkTo_UnCryptMailto('nbjmup;jogpAgvttcbmmspoefmm/di');">info [at] fussballrondell</a><br>

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 );
}


document.menustate 				= new Array;
document.menustate['home'] 		= 'norm';
document.menustate['location']	= 'norm';
document.menustate['menu']		= 'norm';
document.menustate['gallery'] 	= 'norm';
document.menustate['jobs']		= 'norm';
document.menustate['contact']	= 'norm';


function setnavi(id){
	document.getElementById(id).src = urlimg + 'menu/high/' + id + '.gif';
}
function unsetnavi(id){
	document.getElementById(id).src = urlimg + 'menu/' + document.menustate[id] + '/' + id + '.gif';
}





