	var lastout = "";
	var lastin  = "";
	
	function toggle_list(fadein,fadeout) 
	{ 
	new Effect.Fade(fadeout, {duration:.3}); setTimeout('Effect.Appear(\''+fadein+'\', {duration:.3})',300);	
	}

	function toggle_news(fadein,fadeout)
	{
	if (lastout) { new Effect.Fade(lastin, {duration:.3}); setTimeout('Effect.Appear(\''+lastout+'\', {duration:.3})',300); }
	new Effect.Fade(fadeout, {duration:.3}); setTimeout('Effect.Appear(\''+fadein+'\', {duration:.3})',300);
	var lastout = fadeout;
	var lastin  = fadein;
	}

	function shop(item)
	{
	document.getElementById("shop").innerHTML = "<a href='/shop/"+item+"/'>YOU CAN BUY<br><img src='/images/"+item+".jpg' width=78 height=110><br>FROM OUR SHOP</a>";
	document.getElementById("shop").style = "border: solid 1px;";
	}

	function popup(file,width,height)
	{
	url = "/image/" + file + "/"+width+"/"+height+"/";
	gallerypopup(url,width,height);
	}

	function gallerypopup(url,width,height)
	{
	window.open(url,null,'scrollbars=no,toolbar=no,status=no,resizable=no,location=0,width='+width+',height='+height); 
	return false;
	}

	function showpic(url,width,height)
	{
	  gallerypopup(url,width,height);
	}