function togglebox(box){
	if (box=='video'){
		$("a.btn_video").hide();
		$("a.btn_image").show();
		$("#togglebox-image").hide();
		$("#togglebox-video").show();
	}else if (box=='image'){
		$("a.btn_image").hide();
		$("a.btn_video").show();
		$("#togglebox-video").hide();
		$("#togglebox-image").show();
	}
}
