function initDropdown(){
	var $list = document.getElementById("expandable");
	$list.style.display = "none";
}

function clickable(){
	var $list = document.getElementById("expandable");
	if($list.style.display == "block"){
		$list.style.display = "none";
	}
	else $list.style.display = "block";
}