// JavaScript Document
function pulldown(obj){
	obj.style.overflow = "visible";
}

function pullup(obj){
	obj.style.overflow = "hidden";
}
