	function gollum(q, l, wl)
	{
		var wikiwin =  window.open("http://gollum.easycp.de/gollum/gollum.php?a=core&l="+((l)?l:'')+"&wl="+((wl)?wl:'')+"&q="+((q)?q:''), "WIKI_ENVIRONMENT", "height=580, width=780, top=0, left=0, menubar=0, location=0, resizable=1, status=1");
		wikiwin.focus();
	}

	
	
	
	
	
	$(document).ready(function()
	{
		var w = $('.right').width();
		$(".meta").css("width", w).corner("8px");
				
		$("#switch").toggle(function(){
			$(this).html('+');
			$('.right').animate({width: 1}, 500, null, function(){$('.right').hide()});
		},function(){
			$(this).html('-');
			$('.right').animate({width: w}, 500);
		});
		
	});