function nospam(){	
	var p = $.makeArray(arguments).reverse().join(".").split('#'); m = p[1] + "@" + p[0];
	document.write('<a href="mailto:'+m+'?subject=Kontakt">'+m+'</a>');		
}

/* Communicate swf/js */
function swfPath(swfid) {
    if(navigator.appName.indexOf("Microsoft") != -1){
		return window[swfid]
    }else{
		return document[swfid]
    }
}

$(document).ready(function(){	
	/* Sitemap toggle */
	if($.cookie("sitemapopen") == "true"){
		$("#sitemap_content").show();
	}else{
		$("#sitemap_content").hide();
		$("#sitemap_btn").addClass("close");		
	}
    $("#sitemap_btn").click(function(){
        $(this).toggleClass("close");
		$("#sitemap_content").slideToggle("slow",function(){			
			$.cookie("sitemapopen", $('#sitemap_content').is(":visible"), {path:'/', expires:7 });			
			if ($('#sitemap_content').is(":visible")) {
				$().scrollTo($("a#sitemap_btn"), 500);
			}
		});
		return false;
    });
	
	$("#nav_search .searchinput").fieldtag();
});
