// JavaScript Document

var checkopen = "no";

function toggle(){
	if(checkopen == "no"){
		 new Fx.Style('container', 'margin-top', {duration: 800}).custom(0, -3000); 
		 document.getElementById("toggle").innerHTML = '<img src="http://zoob.cluster-graphics.com//themes/site_themes/zoobstyle/design/switch2.gif" border="0">';
		 checkopen = "ja";
	}
	else
	{
		 new Fx.Style('container', 'margin-top', {duration: 800}).custom(-3000, 0); 
		  document.getElementById("toggle").innerHTML = '<img src="http://zoob.cluster-graphics.com//themes/site_themes/zoobstyle/design/switch.gif" border="0">';
		 checkopen = "no";
	}
		
}