$(document).ready(function(){


	$("#close").click(function(){
	//	title=$("#box").height();
	//	document.getElementById("box").style.height=title+"px";
//		document.getElementById("box").style.position="absolute";
	//	document.getElementById("menu").style.position="absolute";
	//	document.getElementById("menu").style.width="200px";
		$("#box").animate({ width: "0"}, 1200);	
	//	document.getElementById("box").style.position="absolute";
	//	document.getElementById("menu").style.position="absolute";
		$("#changecatalog").load("/index.php?changemenu=1");
		return false;
	});

	$("#open").click(function(){
		$("#box").animate({ width: "200"}, 1200);
		document.getElementById("menu").style.position="relative";
		document.getElementById("box").style.position="relative";
		$("#changecatalog").load("/index.php?changemenu=1");
		return false;
	});

	$(".run a").click(function(){
		$(".run a").toggle();
		return false;
	});


});

